Compare commits

..

No commits in common. "ec26adc7dc774e39e753570a5e1bbe6553258b16" and "7688a9b8a4bcb65e23ee814b8d2d6ee0d314350a" have entirely different histories.

2 changed files with 1 additions and 11 deletions

View file

@ -34,7 +34,6 @@ in {
}
(mkIf cfg.treesitter.enable {
vim.treesitter.enable = true;
vim.treesitter.grammars = [cfg.treesitter.norgPackage];
})
]);

View file

@ -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"];
};
};
};