From 72a86c007a059b18e41976babf7c9df3c438ae3d Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Wed, 20 Sep 2023 16:52:06 +0300 Subject: [PATCH] Nvim: change telescope keybind ctrl-t is used by default with tagstack --- home/.config/nvim/lua/plugins/telescope.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/.config/nvim/lua/plugins/telescope.lua b/home/.config/nvim/lua/plugins/telescope.lua index 9f0f5b64..3dac263c 100644 --- a/home/.config/nvim/lua/plugins/telescope.lua +++ b/home/.config/nvim/lua/plugins/telescope.lua @@ -14,7 +14,7 @@ return function() telescope.load_extension("cder") -- Keybinds - vim.keymap.set("n", "", vim.cmd.Telescope) + vim.keymap.set("n", "", vim.cmd.Telescope) vim.keymap.set("n", "", builtin.find_files) vim.keymap.set("n", "", builtin.live_grep) end