AutoYADM commit: 2024-12-27 01:15:02

This commit is contained in:
Daniel Fichtinger 2024-12-27 01:15:02 -05:00
parent ddc29f99a4
commit 2de69770a2
3 changed files with 13 additions and 3 deletions

View file

@ -52,7 +52,7 @@
"noice.nvim": { "branch": "main", "commit": "eaed6cc9c06aa2013b5255349e4f26a6b17ab70f" }, "noice.nvim": { "branch": "main", "commit": "eaed6cc9c06aa2013b5255349e4f26a6b17ab70f" },
"nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" }, "nui.nvim": { "branch": "main", "commit": "53e907ffe5eedebdca1cd503b00aa8692068ca46" },
"nvim-cmp": { "branch": "main", "commit": "3403e2e9391ed0a28c3afddd8612701b647c8e26" }, "nvim-cmp": { "branch": "main", "commit": "3403e2e9391ed0a28c3afddd8612701b647c8e26" },
"nvim-colorizer.lua": { "branch": "master", "commit": "8c6164f3beb90b3b44ab4dd6657979553d106aea" }, "nvim-colorizer.lua": { "branch": "master", "commit": "3437b6bdf8301b84dafa6088d06ec2751e09ea9b" },
"nvim-dap": { "branch": "master", "commit": "665d3569a86395fe0dab85efbdb26d7d2ee57e49" }, "nvim-dap": { "branch": "master", "commit": "665d3569a86395fe0dab85efbdb26d7d2ee57e49" },
"nvim-dap-go": { "branch": "main", "commit": "6aa88167ea1224bcef578e8c7160fe8afbb44848" }, "nvim-dap-go": { "branch": "main", "commit": "6aa88167ea1224bcef578e8c7160fe8afbb44848" },
"nvim-dap-python": { "branch": "master", "commit": "34282820bb713b9a5fdb120ae8dd85c2b3f49b51" }, "nvim-dap-python": { "branch": "master", "commit": "34282820bb713b9a5fdb120ae8dd85c2b3f49b51" },
@ -84,6 +84,7 @@
"snacks.nvim": { "branch": "main", "commit": "98df370703b3c47a297988f3e55ce99628639590" }, "snacks.nvim": { "branch": "main", "commit": "98df370703b3c47a297988f3e55ce99628639590" },
"speedtyper.nvim": { "branch": "v2", "commit": "f27fa7870dd35f1884efaef1c9f1d2e7dcedcacf" }, "speedtyper.nvim": { "branch": "v2", "commit": "f27fa7870dd35f1884efaef1c9f1d2e7dcedcacf" },
"tabout.nvim": { "branch": "master", "commit": "9a3499480a8e53dcaa665e2836f287e3b7764009" }, "tabout.nvim": { "branch": "master", "commit": "9a3499480a8e53dcaa665e2836f287e3b7764009" },
"telescope-words.nvim": { "branch": "main", "commit": "0b12c4b75ed4d6d13a35cb7f40cc370b39eb1043" },
"telescope.nvim": { "branch": "master", "commit": "2eca9ba22002184ac05eddbe47a7fe2d5a384dfc" }, "telescope.nvim": { "branch": "master", "commit": "2eca9ba22002184ac05eddbe47a7fe2d5a384dfc" },
"text-case.nvim": { "branch": "main", "commit": "e898cfd46fa6cde0e83abb624a16e67d2ffc6457" }, "text-case.nvim": { "branch": "main", "commit": "e898cfd46fa6cde0e83abb624a16e67d2ffc6457" },
"todo-comments.nvim": { "branch": "main", "commit": "ae0a2afb47cf7395dc400e5dc4e05274bf4fb9e0" }, "todo-comments.nvim": { "branch": "main", "commit": "ae0a2afb47cf7395dc400e5dc4e05274bf4fb9e0" },

View file

@ -25,11 +25,16 @@ map({ "n", "x" }, "\\", function()
LazyVim.format({ force = true }) LazyVim.format({ force = true })
end, { desc = "Format" }) end, { desc = "Format" })
map({ "n", "i" }, "<M-c>", function() map({ "n" }, "<M-c>", function()
-- the `a` is necessary to return the cursor to the same
-- position it was before
vim.cmd("normal! zz")
end, { remap = false, noremap = true, desc = "Center Screen" })
map({ "i" }, "<M-c>", function()
-- the `a` is necessary to return the cursor to the same -- the `a` is necessary to return the cursor to the same
-- position it was before -- position it was before
vim.api.nvim_input("<Esc>zza") vim.api.nvim_input("<Esc>zza")
end, { remap = false, noremap = true, desc = "Center Screen" }) end, { remap = false, noremap = true, desc = "Center Screen (Insert mode)" })
map("n", "<C-z>", "<CMD>stop<CR>", { desc = "Suspend" }) map("n", "<C-z>", "<CMD>stop<CR>", { desc = "Suspend" })

View file

@ -0,0 +1,4 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = { "archie-judd/telescope-words.nvim" },
}