feat: disable line numbers in terminal

This commit is contained in:
Youwen Wu 2024-09-11 12:30:28 -07:00
parent 1d60fb7dd2
commit 4e04b1c8fa
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
2 changed files with 11 additions and 0 deletions

10
config/autocmds.nix Normal file
View file

@ -0,0 +1,10 @@
{
autoCmd = [
{
command = "setlocal nonumber norelativenumber";
event = [
"TermOpen"
];
}
];
}

View file

@ -4,6 +4,7 @@
./plugins ./plugins
./keymaps.nix ./keymaps.nix
./init.nix ./init.nix
./autocmds.nix
]; ];
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;