Files
cnix/home/modules/devtools/neovim/plugins/comment-nvim.nix
2024-09-02 19:14:35 +02:00

23 lines
392 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>'
},
}
'';
}
];
}