nvim.nix/config/plugins/editor/comment.nix

31 lines
791 B
Nix
Raw Permalink Normal View History

2024-08-08 09:58:48 +08:00
{...}: {
2024-08-04 21:19:37 +08:00
plugins.comment = {
enable = true;
2024-08-06 22:53:30 +08:00
settings = {
# LHS of toggle mappings in NORMAL mode
toggler = {
# Line-comment toggle keymap
line = "<leader>c<space>";
# Block-comment toggle keymap
block = "<leader>c<enter>";
};
# LHS of operator-pending mappings in NORMAL and VISUAL mode
opleader = {
# Line-comment keymap
line = "<leader>c<space>";
# Block-comment keymap
block = "<leader>c<enter>";
};
# LHS of extra mappings
extra = {
# Add comment on the line above
above = "<leader>co";
# Add comment on the line below
below = "<leader>ce";
# Add comment at the end of line
eol = "<leader>ca";
};
};
2024-08-04 21:19:37 +08:00
};
}