From 457ce9e6017c081e02a566895fa1fe488cd87b9c Mon Sep 17 00:00:00 2001 From: Michaƫl Ball Date: Thu, 18 Jul 2024 09:07:05 +0100 Subject: Refactor plugins for lazy.nvim --- neovim/.config/nvim/lua/plugins/telescope.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 neovim/.config/nvim/lua/plugins/telescope.lua (limited to 'neovim/.config/nvim/lua/plugins/telescope.lua') 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 = { + { '', 'Telescope buffers', desc = 'Telescope buffers' }, + { '', 'Telescope find_files', desc = 'Telescope find files' }, + { '', 'Telescope live_grep', desc = 'Telescope live grep' }, + }, + }, +} -- cgit v1.2.3