Files
nixvim/config/plugins/comment.nix

15 lines
181 B
Nix

{ ... }:
{
plugins.comment = {
enable = true;
settings = {
sticky = true;
toggler = {
block = "<C-x>";
line = "<C-c>";
};
};
};
}