fqbn207 b66190c023 kekl
2025-01-15 20:29:02 +01:00

23 lines
326 B
Nix

{
config,
pkgs,
nixvim,
...
}:
{
programs.nixvim = {
plugins = {
neo-tree = {
enable = true;
enableDiagnostics = true;
enableGitStatus = true;
closeIfLastWindow = true;
window = {
position = "right";
width = 40;
};
};
};
};
}