mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
20 lines
296 B
Nix
20 lines
296 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
with lib;
|
||
|
with builtins; let
|
||
|
cfg = config.vim.comments.comment-nvim;
|
||
|
in {
|
||
|
config = mkIf cfg.enable {
|
||
|
vim.startPlugins = [
|
||
|
"comment-nvim"
|
||
|
];
|
||
|
|
||
|
vim.luaConfigRC.comment-nvim = nvim.dag.entryAnywhere ''
|
||
|
require('Comment').setup()
|
||
|
'';
|
||
|
};
|
||
|
}
|