mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 06:04:43 +00:00
14 lines
No EOL
522 B
Lua
14 lines
No EOL
522 B
Lua
return {
|
|
"numToStr/Comment.nvim",
|
|
keys = {
|
|
{ "gcc", mode = "n", desc = "Comment toggle current line" },
|
|
{ "gc", mode = { "n", "o" }, desc = "Comment toggle linewise" },
|
|
{ "gc", mode = "x", desc = "Comment toggle linewise (visual)" },
|
|
{ "gbc", mode = "n", desc = "Comment toggle current block" },
|
|
{ "gb", mode = { "n", "o" }, desc = "Comment toggle blockwise" },
|
|
{ "gb", mode = "x", desc = "Comment toggle blockwise (visual)" },
|
|
},
|
|
config = function()
|
|
require("Comment").setup()
|
|
end,
|
|
} |