From d85ed3b9701b3b7c0b0ef6ad1b657a8e561f5ade Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 31 Mar 2025 15:18:49 +0200 Subject: [PATCH] [Telescope] Move keybind off --- nvim/lua/plugins/nav/telescope.lua | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/nvim/lua/plugins/nav/telescope.lua b/nvim/lua/plugins/nav/telescope.lua index fecc175..44a8356 100755 --- a/nvim/lua/plugins/nav/telescope.lua +++ b/nvim/lua/plugins/nav/telescope.lua @@ -22,47 +22,47 @@ return { }) opts.desc = "telescope find files" - vim.keymap.set("n", "ff", builtin.find_files, opts) + vim.keymap.set("n", "ff", builtin.find_files, opts) opts.desc = "telescope live grep" - vim.keymap.set("n", "fg", builtin.live_grep, opts) + vim.keymap.set("n", "fg", builtin.live_grep, opts) opts.desc = "telescope buffers" - vim.keymap.set("n", "fb", builtin.buffers, opts) + vim.keymap.set("n", "fb", builtin.buffers, opts) opts.desc = "Show nvim functions" - vim.keymap.set("n", "fh", builtin.help_tags, opts) + vim.keymap.set("n", "fh", builtin.help_tags, opts) -- Recent Commands opts.desc = "Show recent commands" - vim.keymap.set('n', 'frc', ':Telescope command_history', opts) + vim.keymap.set('n', 'frc', ':Telescope command_history', opts) -- Recent Searches opts.desc = "Show recent searches" - vim.keymap.set('n', 'frs', ':Telescope search_history', opts) + vim.keymap.set('n', 'frs', ':Telescope search_history', opts) -- Old Files opts.desc = "Show recent files" - vim.keymap.set('n', 'frf', ':Telescope oldfiles', opts) + vim.keymap.set('n', 'frf', ':Telescope oldfiles', opts) -- Quickfix Items opts.desc = "Show quickfix items" - vim.keymap.set('n', 'fq', ':Telescope quickfix', opts) + vim.keymap.set('n', 'fq', ':Telescope quickfix', opts) -- Spell Suggestions opts.desc = "Show spell suggestions" - vim.keymap.set('n', 'fs', ':Telescope spell_suggest', opts) + vim.keymap.set('n', 'fs', ':Telescope spell_suggest', opts) -- Diagnostics opts.desc = "Show diagnostics" - vim.keymap.set('n', 'fd', ':Telescope diagnostics', opts) + vim.keymap.set('n', 'fd', ':Telescope diagnostics', opts) -- Notifications opts.desc = "Show notifications" - vim.keymap.set('n', 'fd', ':Telescope notify', opts) + vim.keymap.set('n', 'fd', ':Telescope notify', opts) -- Implementations opts.desc = "Show implementations" - vim.keymap.set('n', 'fi', ':Telescope lsp_implementations', opts) + vim.keymap.set('n', 'fi', ':Telescope lsp_implementations', opts) end, }