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

14 lines
255 B
Nix

_: {
programs.nixvim.plugins.neo-tree = {
enable = true;
enableDiagnostics = true;
extraOptions = {
filesystem = {
filtered_items = {
visible = true;
hide_fotfiles = false;
};
};
};
};
}