neovim-flake/config/autocmds.nix

25 lines
384 B
Nix
Raw Normal View History

2024-09-11 12:30:28 -07:00
{
autoCmd = [
{
command = "setlocal nonumber norelativenumber";
event = [
"TermOpen"
];
}
2024-09-27 14:49:02 -07:00
# {
# command = {
# __raw = ''
# require('typst-preview').update()
# '';
# };
# event = [
# "BufEnter"
# "BufWinEnter"
# ];
# pattern = [
# "*.typ"
# ];
# }
2024-09-11 12:30:28 -07:00
];
}