NixConfig/modules/home/nix/nvim/neotree.nix
fqbn207 112adbcbf4 kekl
2025-01-15 00:56:34 +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;
};
};
};
};
}