snowflake/home/programs/editors/neovim/plugins/editor/neotree.nix

15 lines
255 B
Nix
Raw Normal View History

2024-10-28 19:30:48 -04:00
_: {
programs.nixvim.plugins.neo-tree = {
enable = true;
enableDiagnostics = true;
2024-11-01 07:21:24 -04:00
extraOptions = {
filesystem = {
filtered_items = {
visible = true;
hide_fotfiles = false;
};
};
};
2024-10-28 19:30:48 -04:00
};
}