13 lines
199 B
Nix
13 lines
199 B
Nix
|
{
|
||
|
programs.nixvim.plugins.nvim-tree = {
|
||
|
enable = true;
|
||
|
view.width = {
|
||
|
min = 30;
|
||
|
max = -1;
|
||
|
padding = 1;
|
||
|
};
|
||
|
disableNetrw = true;
|
||
|
filters.dotfiles = true;
|
||
|
};
|
||
|
}
|