15 lines
183 B
Nix
15 lines
183 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.nixvim = {
|
|
plugins = {
|
|
neo-tree = {
|
|
enable = true;
|
|
settings = {
|
|
enable_git_status = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|