mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-19 03:02:17 +00:00
22 lines
372 B
Nix
22 lines
372 B
Nix
|
{
|
||
|
programs.nixvim = {
|
||
|
keymaps = [
|
||
|
{
|
||
|
mode = "n";
|
||
|
key = "<leader>n";
|
||
|
action = ":Neotree action=focus reveal toggle<CR>";
|
||
|
options.silent = true;
|
||
|
}
|
||
|
];
|
||
|
|
||
|
plugins.neo-tree = {
|
||
|
enable = true;
|
||
|
|
||
|
closeIfLastWindow = true;
|
||
|
window = {
|
||
|
width = 30;
|
||
|
autoExpandWidth = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|