diff options
author | Squibid <me@zacharyscheiman.com> | 2024-03-09 00:03:57 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-03-09 00:04:04 -0500 |
commit | e8dbd24b6ff7bb0ac3bf8caae511ab2a6a615525 (patch) | |
tree | e9b84c3b0ef4fafb9e810b4bdf2e5350052560e0 /after/plugin/comment.lua | |
parent | debeca659ae2e41ca3f248a5ee30dbbaca6aebc8 (diff) | |
download | nvim-e8dbd24b6ff7bb0ac3bf8caae511ab2a6a615525.tar.gz nvim-e8dbd24b6ff7bb0ac3bf8caae511ab2a6a615525.tar.bz2 nvim-e8dbd24b6ff7bb0ac3bf8caae511ab2a6a615525.zip |
remove comment options (they we're just the defaults)
Diffstat (limited to 'after/plugin/comment.lua')
-rw-r--r-- | after/plugin/comment.lua | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/after/plugin/comment.lua b/after/plugin/comment.lua index e95b823..15ec3d8 100644 --- a/after/plugin/comment.lua +++ b/after/plugin/comment.lua @@ -3,24 +3,4 @@ if not status_ok then return end -comment.setup { - toggler = { - line = 'gcc', - block = 'gbc', - }, - opleader = { - line = 'gc', - block = 'gb', - }, - extra = { - above = 'gcO', - below = 'gco', - eol = 'gcA', - }, - mappings = { - basic = true, - extra = true, - }, - pre_hook = nil, - post_hook = nil, -} +comment.setup {} |