diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2024-07-23 12:07:09 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2024-07-23 12:07:09 +0400 |
commit | 8d30625048cac980a550627ae26c851ff0da5d61 (patch) | |
tree | e2b633a8f5247d9ab477d3059c4edbd833e8356a /config/nvim/lua/master/plugins/comment.lua | |
parent | 5a50591ea023f63649569638d45bf0f3bec0aef6 (diff) |
nvim config removed
Diffstat (limited to 'config/nvim/lua/master/plugins/comment.lua')
-rw-r--r-- | config/nvim/lua/master/plugins/comment.lua | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/config/nvim/lua/master/plugins/comment.lua b/config/nvim/lua/master/plugins/comment.lua deleted file mode 100644 index 66dcbc5..0000000 --- a/config/nvim/lua/master/plugins/comment.lua +++ /dev/null @@ -1,28 +0,0 @@ -require('Comment').setup{ - - ---Add a space b/w comment and the line - padding = true, - - ---Whether the cursor should stay at its position - sticky = true, - - ---Lines to be ignored while (un)comment - ignore = nil, - - ---LHS of toggle mappings in NORMAL mode - toggler = { - ---Line-comment toggle keymap - line = 'cc', - ---Block-comment toggle keymap - block = 'cb', - }, - - ---LHS of operator-pending mappings in NORMAL and VISUAL mode - opleader = { - ---Line-comment keymap - line = 'cc', - ---Block-comment keymap - block = 'cb', - }, - -} |