From e62c2c3c95855232f0211459966a45a098f46a43 Mon Sep 17 00:00:00 2001 From: Christian Segundo Date: Sat, 20 Jan 2024 23:56:23 +0100 Subject: mass exodus --- public/nvim/.nvim/lua/plugins/core/nerdcommenter.lua | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 public/nvim/.nvim/lua/plugins/core/nerdcommenter.lua (limited to 'public/nvim/.nvim/lua/plugins/core/nerdcommenter.lua') diff --git a/public/nvim/.nvim/lua/plugins/core/nerdcommenter.lua b/public/nvim/.nvim/lua/plugins/core/nerdcommenter.lua deleted file mode 100644 index 720b3d2..0000000 --- a/public/nvim/.nvim/lua/plugins/core/nerdcommenter.lua +++ /dev/null @@ -1,18 +0,0 @@ -return { - "preservim/nerdcommenter", - init = function() - vim.g.NERDCreateDefaultMappings = 0 - end, - config = function() - vim.api.nvim_set_keymap("v", "cc", "NERDCommenterComment", { silent = true }) - vim.api.nvim_set_keymap("v", "cu", "NERDCommenterUncomment", { silent = true }) - vim.api.nvim_set_keymap("n", "cc", "NERDCommenterComment", { noremap = false, silent = true }) - vim.api.nvim_set_keymap("n", "cu", "NERDCommenterUncomment", { noremap = false, silent = true }) - end, - keys = { - { "cc", mode = "v" }, - { "cc", mode = "n" }, - { "cu", mode = "v" }, - { "cu", mode = "n" }, - }, -} -- cgit v1.2.3