]> git.rmz.io Git - dotfiles.git/commitdiff
nvim: disable interfering mappings lazyvim sets for telescope
authorSamir Benmendil <me@rmz.io>
Tue, 11 Apr 2023 00:09:37 +0000 (01:09 +0100)
committerSamir Benmendil <me@rmz.io>
Tue, 31 Oct 2023 23:08:51 +0000 (23:08 +0000)
Way too used to <space><space> toggling folds.

Also <leader>gs <leader>gc are for fugitive stuff.

nvim/lua/plugins/editor.lua [new file with mode: 0644]

diff --git a/nvim/lua/plugins/editor.lua b/nvim/lua/plugins/editor.lua
new file mode 100644 (file)
index 0000000..6aa3858
--- /dev/null
@@ -0,0 +1,10 @@
+return {
+  {
+    "nvim-telescope/telescope.nvim",
+    keys = {
+      { "<leader><space>", false },
+      { "<leader>gc", false },
+      { "<leader>gs", false },
+    },
+  },
+}