switched to a submodule

This commit is contained in:
kalmenn 2023-12-18 09:11:00 +01:00
commit fdf977246d
Signed by: kalmenn
GPG key ID: DFF253360BF8471F
14 changed files with 276 additions and 0 deletions

16
lua/plugins/telescope.lua Normal file
View file

@ -0,0 +1,16 @@
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-p>", "<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" },
}
}