20 lines
422 B
Nix
20 lines
422 B
Nix
{
|
|
autoCmd = [
|
|
{
|
|
command = "FloatermNew --wintype=float --name=rangerterm --position=topleft --autoclose=2 --opener=edit --cwd=<buffer> --titleposition=left ranger<CR><CR>";
|
|
event = [ "VimEnter" ];
|
|
pattern = [ "*" ];
|
|
}
|
|
{
|
|
command = "silent! mkview";
|
|
event = [ "BufWinLeave" ];
|
|
pattern = [ "*" ];
|
|
}
|
|
{
|
|
command = "silent! loadview";
|
|
event = [ "BufWinEnter" ];
|
|
pattern = [ "*" ];
|
|
}
|
|
];
|
|
}
|