mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
24 lines
384 B
Nix
24 lines
384 B
Nix
{
|
|
autoCmd = [
|
|
{
|
|
command = "setlocal nonumber norelativenumber";
|
|
event = [
|
|
"TermOpen"
|
|
];
|
|
}
|
|
# {
|
|
# command = {
|
|
# __raw = ''
|
|
# require('typst-preview').update()
|
|
# '';
|
|
# };
|
|
# event = [
|
|
# "BufEnter"
|
|
# "BufWinEnter"
|
|
# ];
|
|
# pattern = [
|
|
# "*.typ"
|
|
# ];
|
|
# }
|
|
];
|
|
}
|