nvim: added telescope
This commit is contained in:
parent
16bee960fb
commit
60b8d336d7
3 changed files with 20 additions and 1 deletions
15
.config/nvim/lua/plugins/telescope.lua
Normal file
15
.config/nvim/lua/plugins/telescope.lua
Normal file
|
@ -0,0 +1,15 @@
|
|||
return {
|
||||
"nvim-telescope/telescope.nvim",
|
||||
branch = "0.1.x",
|
||||
dependencies = {
|
||||
"BurntSushi/ripgrep",
|
||||
"nvim-lua/plenary.nvim",
|
||||
"sharkdp/fd",
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
keys = {
|
||||
{ "<C-t>f", "<cmd>Telescope find_files<cr>", desc = "Fuzzy find files with Telescope" },
|
||||
{ "<C-t>b", "<cmd>Telescope buffers<cr>", desc = "Fuzzy find open buffers with Telescope" },
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue