22 lines
434 B
Nix
22 lines
434 B
Nix
_: {
|
|
programs.neovim-flake.settings.vim = {
|
|
projects = {
|
|
project-nvim = {
|
|
enable = true;
|
|
setupOpts = {
|
|
manualMode = false;
|
|
detectionMethods = ["lsp" "pattern"];
|
|
patterns = [
|
|
".git"
|
|
".hg"
|
|
"Makefile"
|
|
"package.json"
|
|
"index.*"
|
|
".anchor"
|
|
"flake.nix"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|