diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2024-07-18 09:07:05 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2024-07-18 09:07:05 +0100 |
commit | 457ce9e6017c081e02a566895fa1fe488cd87b9c (patch) | |
tree | 05f49a483fe99c9935f43e8e4c25f80ba5077452 /neovim/.config/nvim/lua/plugins/telescope.lua | |
parent | 4c2a7cc1b0fa0e437476e06c1c11e1778d9cc92f (diff) |
Refactor plugins for lazy.nvim
Diffstat (limited to 'neovim/.config/nvim/lua/plugins/telescope.lua')
-rw-r--r-- | neovim/.config/nvim/lua/plugins/telescope.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/neovim/.config/nvim/lua/plugins/telescope.lua b/neovim/.config/nvim/lua/plugins/telescope.lua new file mode 100644 index 0000000..6a81359 --- /dev/null +++ b/neovim/.config/nvim/lua/plugins/telescope.lua @@ -0,0 +1,13 @@ +return { + { + 'nvim-telescope/telescope.nvim', + dependencies = { + 'nvim-lua/plenary.nvim', + }, + keys = { + { '<F3>', '<cmd>Telescope buffers<CR>', desc = 'Telescope buffers' }, + { '<F4>', '<cmd>Telescope find_files<CR>', desc = 'Telescope find files' }, + { '<F6>', '<cmd>Telescope live_grep<CR>', desc = 'Telescope live grep' }, + }, + }, +} |