diff --git a/modules/plugins/notes/neorg/config.nix b/modules/plugins/notes/neorg/config.nix index fab5079d..54a6bd8c 100644 --- a/modules/plugins/notes/neorg/config.nix +++ b/modules/plugins/notes/neorg/config.nix @@ -34,7 +34,6 @@ in { } (mkIf cfg.treesitter.enable { - vim.treesitter.enable = true; vim.treesitter.grammars = [cfg.treesitter.norgPackage]; }) ]); diff --git a/modules/plugins/notes/neorg/neorg.nix b/modules/plugins/notes/neorg/neorg.nix index ed1b0435..eae7a3c1 100644 --- a/modules/plugins/notes/neorg/neorg.nix +++ b/modules/plugins/notes/neorg/neorg.nix @@ -17,23 +17,14 @@ in { load = { "core.defaults" = mkOption { default = {}; - description = '' - all of the most important modules that any user would want to have a "just works" experience - ''; type = submodule { options = { - enable = mkEnableOption '' - all of the most important modules that any user would want to have a "just works" experience - ''; + enable = mkEnableOption "Wrapper to interface with several different completion engines."; config = { disable = mkOption { - description = '' - list of modules from to be disabled from core.defaults - ''; type = listOf str; default = []; - example = ["core.autocommands" "core.itero"]; }; }; };