Files
cnix/modules/home/programs/neovim/plugins/comment.nix
2025-08-29 15:25:40 +02:00

22 lines
370 B
Nix

{ pkgs, ... }:
{
programs.neovim.plugins = with pkgs.vimPlugins; [
{
plugin = comment-nvim;
type = "lua";
config =
# lua
''
require("Comment").setup({
opleader = {
line = "<C-b>",
},
toggler = {
line = "<C-b>",
},
})
'';
}
];
}