From 268b1196944e5fce3339c05f5768546688348048 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Tue, 11 Apr 2023 01:09:37 +0100 Subject: [PATCH] nvim: disable interfering mappings lazyvim sets for telescope Way too used to toggling folds. Also gs gc are for fugitive stuff. --- nvim/lua/plugins/editor.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nvim/lua/plugins/editor.lua diff --git a/nvim/lua/plugins/editor.lua b/nvim/lua/plugins/editor.lua new file mode 100644 index 0000000..6aa3858 --- /dev/null +++ b/nvim/lua/plugins/editor.lua @@ -0,0 +1,10 @@ +return { + { + "nvim-telescope/telescope.nvim", + keys = { + { "", false }, + { "gc", false }, + { "gs", false }, + }, + }, +} -- 2.48.1