nixvim/config/plugins/editor/neo-tree.nix
2024-04-17 15:44:37 +02:00

21 lines
417 B
Nix

{ pkgs, ... }: {
plugins.neo-tree = {
enable = true;
sources = [ "filesystem" "buffers" "git_status" "document_symbols" ];
addBlankLineAtTop = true;
filesystem = {
bindToCwd = false;
};
defaultComponentConfigs = {
indent = {
expanderCollapsed = "";
expanderExpanded = "";
expanderHighlight = "NeoTreeExpander";
};
};
};
}