feat(nvim): migrate to LazyVim

This commit is contained in:
Stefan Imhoff
2023-02-10 12:43:10 +01:00
parent 91874608bf
commit a274746a8a
147 changed files with 2059 additions and 2806 deletions

View File

@@ -0,0 +1,12 @@
-- Find, Filter, Preview, Pick
-- https://github.com/nvim-telescope/telescope.nvim
return {
"telescope.nvim",
keys = {
{ "<C-p>", "<cmd>Telescope find_files hidden=true<cr>", desc = "Find Files (hidden)" },
{ "<C-t>", "<cmd>Telescope<cr>", desc = "Telescope" },
{ "<M-p>", "<cmd>Telescope find_files<cr>", desc = "Find Files" },
{ "<leader>tr", "<cmd>Telescope resume<cr>", desc = "Telescope" },
{ "<leader>tu", "<cmd>Telescope undo<cr>", desc = "Undo Tree" },
},
}