- create autocmds.nix for custom autocommands - integrate autocmds into main configuration
8 lines
151 B
Nix
8 lines
151 B
Nix
{...}: {
|
|
config.autoCmd = [
|
|
{ # Balance splits when our teminal resizes
|
|
command = "wincmd =";
|
|
event = [ "VimResized" ];
|
|
}
|
|
];
|
|
}
|