feat(telescope): Add telescope
\# TODO:
- add more keybinds
- go over documentation and configure properly
This commit is contained in:
parent
49cc6788ef
commit
25baeeca01
18
lua/plugins/spec/telescope.lua
Normal file
18
lua/plugins/spec/telescope.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
---@module "lazy.nvim"
|
||||||
|
---@type LazySpec[]
|
||||||
|
return{
|
||||||
|
{
|
||||||
|
"nvim-telescope/telescope.nvim", version = '*',
|
||||||
|
dependencies = {
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' }
|
||||||
|
},
|
||||||
|
cmd = "Telescope",
|
||||||
|
keys = {
|
||||||
|
{"<leader>h",
|
||||||
|
require("telescope.builtin").help_tags,
|
||||||
|
desc = "Telescope Help_tags"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user