mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-04 04:35:29 +00:00
feat(nvim): migrate to LazyVim
This commit is contained in:
12
nvim/lua/plugins/telescope.lua
Normal file
12
nvim/lua/plugins/telescope.lua
Normal 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" },
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user