diff --git a/lua/keybinds.lua b/lua/keybinds.lua index 9b350cc..f7f271f 100644 --- a/lua/keybinds.lua +++ b/lua/keybinds.lua @@ -77,11 +77,10 @@ vim.keymap.set('n', 'gc' ,'Neogit commit' ,{ desc = 'open Ne -- Telecope --- local builtin = require('telescope.builtin') --- vim.keymap.set('n', 'ff', builtin.find_files, { desc = 'Telescope find files' }) --- vim.keymap.set('n', 'fg', builtin.live_grep, { desc = 'Telescope live grep' }) --- vim.keymap.set('n', 'fb', builtin.buffers, { desc = 'Telescope buffers' }) --- vim.keymap.set('n', 'fh', builtin.help_tags, { desc = 'Telescope help tags' }) +vim.keymap.set('n', 'ff' ,'Telescope find_files' ,{ desc = 'Telescope find files' }) +vim.keymap.set('n', 'fg' ,'Telescope live_grep' ,{ desc = 'Telescope live grep' }) +vim.keymap.set('n', 'fb' ,'Telescope buffers' ,{ desc = 'Telescope buffers' }) +vim.keymap.set('n', 'fh' ,'Telescope help_tags' ,{ desc = 'Telescope help tags' }) diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index 60dbefb..e18ac69 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -1,6 +1,5 @@ return { - 'nvim-telescope/telescope.nvim', - tag = 'v0.2.0', + 'nvim-telescope/telescope.nvim', tag = 'v0.2.0', dependencies = { 'nvim-lua/plenary.nvim', 'BurntSushi/ripgrep',