18 lines
266 B
Nix
18 lines
266 B
Nix
|
{
|
||
|
plugins.nvim-tree = {
|
||
|
enable = true;
|
||
|
disableNetrw = true;
|
||
|
hijackCursor = true;
|
||
|
selectPrompts = true;
|
||
|
|
||
|
renderer = {
|
||
|
fullName = true;
|
||
|
highlightGit = true;
|
||
|
};
|
||
|
|
||
|
tab.sync = {
|
||
|
open = true;
|
||
|
close = true;
|
||
|
};
|
||
|
};
|
||
|
}
|