From: Samir Benmendil Date: Tue, 11 Apr 2023 00:09:37 +0000 (+0100) Subject: nvim: disable interfering mappings lazyvim sets for telescope X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/556b2a0f56ba885fc466f33329647fcbb46d2920?ds=sidebyside nvim: disable interfering mappings lazyvim sets for telescope Way too used to toggling folds. Also gs gc are for fugitive stuff. --- 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 }, + }, + }, +}