added neovim config and basic README.md
This commit is contained in:
parent
d7a014909d
commit
56bca305b2
12 changed files with 312 additions and 1 deletions
14
lua/core/plugins/telescope.lua
Normal file
14
lua/core/plugins/telescope.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
-- For more information on the arguements, visit: https://www.lazyvim.org/extras/editor/telescope#telescopenvim OR for more information on telescope, visit: https://github.com/nvim-telescope/telescope.nvim
|
||||
return {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.8',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
cmd = "Telescope",
|
||||
keys = {
|
||||
{ "<leader>//", "<cmd>Telescope<cr>", desc = "Start" },
|
||||
|
||||
{ "<leader>pp", "<cmd>Telescope find_files<cr>", desc = "File Picker" },
|
||||
{ "<leader>;;", "<cmd>Telescope buffers<cr>", desc = "Buffer Picker" },
|
||||
{ "<leader>..", "<cmd>Telescope treesitter<cr>", desc = "Treesitter" },
|
||||
{ "<leader>[[", "<cmd>Telescop live_grep<cr>", desc = "Grep" }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue