Skip to content

Commit 706b58c

Browse files
feat(nixvim): added diffview as default plugin
actually pretty useful when it comes down to it
1 parent 206afc2 commit 706b58c

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

modules/home/development/neovim/plugins/custom/extras/diffview.nix renamed to modules/home/development/neovim/plugins/custom/diffview.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ let
99
in
1010
{
1111
options.home.development.neovim.plugins.${name} = {
12-
enable = lib.mkEnableOption "Enable ${name} plugin for neovim";
12+
enable = lib.mkOption {
13+
type = lib.types.bool;
14+
default = true;
15+
description = "Enable ${name} plugin for neovim";
16+
};
1317
};
1418

1519
config = lib.mkIf cfg.enable {

0 commit comments

Comments
 (0)