summaryrefslogtreecommitdiff
path: root/comment.lua
blob: a2331a495d742b774d6ba98e992cf340c7dfbe7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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,
	},
}