From b24eddefb59c7f1b78cb34fb760dc873bb25277e Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Fri, 28 Jun 2024 23:13:42 +0300 Subject: [PATCH] Modified nvim config, added comment/uncomment keybinding plugin --- .config/nvim/lazy-lock.json | 1 + .config/nvim/lua/plugins/comment.lua | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .config/nvim/lua/plugins/comment.lua diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json index 8a416ce..51a0bb6 100644 --- a/.config/nvim/lazy-lock.json +++ b/.config/nvim/lazy-lock.json @@ -1,4 +1,5 @@ { + "Comment.nvim": { "branch": "master", "commit": "e30b7f2008e52442154b66f7c519bfd2f1e32acb" }, "LuaSnip": { "branch": "master", "commit": "50fcf17db7c75af80e6b6109acfbfb4504768780" }, "alpha-nvim": { "branch": "main", "commit": "41283fb402713fc8b327e60907f74e46166f4cfd" }, "catppuccin": { "branch": "main", "commit": "c0bea773a09e49e123136b099bce9ddc1bf395d2" }, diff --git a/.config/nvim/lua/plugins/comment.lua b/.config/nvim/lua/plugins/comment.lua new file mode 100644 index 0000000..124482c --- /dev/null +++ b/.config/nvim/lua/plugins/comment.lua @@ -0,0 +1,17 @@ +return { + 'numToStr/Comment.nvim', + opts = { + padding = true, + sticky = true, -- keep cursor at it's position + ignore = nil, + + toggler = { line = 'gcc', block = 'gbc' }, + opleader = { line = 'gc', block = 'gb' }, + extra = { above = 'gcO', below = 'gco', eol = 'gcA' }, + + mappings = { + basic = true, -- `gcc` `gbc` `gc[count]{motion}` `gb[count]{motion}` + extra = false, -- `gco`, `gcO`, `gcA` + }, + }} +