summaryrefslogtreecommitdiff
path: root/comment.lua
diff options
context:
space:
mode:
authorfilip <“filip.rabiega@gmail.com”>2026-02-04 16:34:45 +0100
committerfilip <“filip.rabiega@gmail.com”>2026-02-04 16:34:45 +0100
commit7a7a8ace1dacfff121ce90110c7b5c8635d178c3 (patch)
treea90d1abf42f5b4ea8917e57a02a482ed32a4fae8 /comment.lua
downloadlazy-plugins-7a7a8ace1dacfff121ce90110c7b5c8635d178c3.tar.gz
lazy-plugins-7a7a8ace1dacfff121ce90110c7b5c8635d178c3.tar.bz2
lazy-plugins-7a7a8ace1dacfff121ce90110c7b5c8635d178c3.zip
plugin dump
Diffstat (limited to 'comment.lua')
-rw-r--r--comment.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/comment.lua b/comment.lua
new file mode 100644
index 0000000..a2331a4
--- /dev/null
+++ b/comment.lua
@@ -0,0 +1,14 @@
+return {
+ {
+ "numToStr/Comment.nvim",
+ keys = { "gc", "gb" }, -- lazy-load when using these mappings
+ config = function()
+ require("Comment").setup({
+ -- your configuration here
+ padding = true, -- space between comment and line
+ sticky = true, -- keeps comment on empty lines
+ ignore = nil, -- lines to ignore
+ })
+ end,
+ },
+}