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/268b1196944e5fce3339c05f5768546688348048?ds=inline 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 }, + }, + }, +}