notes/neorg, repl/conjure: lazy load by default

This commit is contained in:
Soliprem 2026-03-21 01:51:27 +01:00 committed by Ching Pei Yang
commit 14c5b99543
2 changed files with 36 additions and 8 deletions

View file

@ -14,6 +14,32 @@ in {
};
config = mkIf cfg.enable {
vim.startPlugins = [pkgs.vimPlugins.conjure];
vim.lazy.plugins.conjure = {
package = pkgs.vimPlugins.conjure;
ft = [
"clojure"
"fennel"
"janet"
"hy"
"julia"
"racket"
"scheme"
"lua"
"lisp"
"python"
"rust"
"sql"
"javascript"
"typescript"
"php"
"r"
];
cmd = [
"ConjureSchool"
"ConjureEval"
"ConjureConnect"
"ConjureClientState"
];
};
};
}