mirror of
https://github.com/softinio/nix-config.git
synced 2025-10-19 11:26:40 -07:00
26 lines
411 B
Nix
26 lines
411 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs.nixvim = {
|
||
|
keymaps = [
|
||
|
{
|
||
|
mode = "n";
|
||
|
key = "<leader>m";
|
||
|
action = ":Neotree action=focus reveal toggle<CR>";
|
||
|
options.silent = true;
|
||
|
}
|
||
|
];
|
||
|
|
||
|
plugins.neo-tree = {
|
||
|
enable = true;
|
||
|
|
||
|
closeIfLastWindow = true;
|
||
|
window = {
|
||
|
width = 30;
|
||
|
autoExpandWidth = true;
|
||
|
position = "right";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|