Files
shed/glasshouse-desktop/dotfiles/packages/nixvim/config/autocmd.nix
2024-10-02 05:37:17 -04:00

25 lines
542 B
Nix

{
autoCmd = [
{
command = "FloatermNew --wintype=float --name=shadeterm --position=topright --autoclose=0 --silent --cwd=<buffer> --titleposition=left zsh";
event = [ "VimEnter" ];
pattern = [ "*" ];
}
{
command = "silent! mkview";
event = [ "BufWinLeave" ];
pattern = [ "*" ];
}
{
command = "lua vim.fn.jobstart({\"aplay\", \"~/sound/sys/cd.wav\"})";
event = [ "BufWinLeave" ];
pattern = [ "*" ];
}
{
command = "silent! loadview";
event = [ "BufWinEnter" ];
pattern = [ "*" ];
}
];
}