forked from foxora/nix
24 lines
400 B
Lua
24 lines
400 B
Lua
|
|
return {
|
||
|
|
{
|
||
|
|
"comment.nvim",
|
||
|
|
event = { "BufReadPost", "BufNewFile" },
|
||
|
|
after = function(plugin)
|
||
|
|
require("Comment").setup({
|
||
|
|
toggler = {
|
||
|
|
line = "<leader>cc",
|
||
|
|
block = "<leader>bc",
|
||
|
|
},
|
||
|
|
opLeader = {
|
||
|
|
line = "<leader>c",
|
||
|
|
block = "<leader>b",
|
||
|
|
},
|
||
|
|
extra = {
|
||
|
|
above = "<leader>c0",
|
||
|
|
below = "<leader>bo",
|
||
|
|
eol = "<leader>cA",
|
||
|
|
},
|
||
|
|
})
|
||
|
|
end,
|
||
|
|
},
|
||
|
|
}
|