mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
feat: disable line numbers in terminal
This commit is contained in:
parent
1d60fb7dd2
commit
4e04b1c8fa
2 changed files with 11 additions and 0 deletions
10
config/autocmds.nix
Normal file
10
config/autocmds.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
autoCmd = [
|
||||
{
|
||||
command = "setlocal nonumber norelativenumber";
|
||||
event = [
|
||||
"TermOpen"
|
||||
];
|
||||
}
|
||||
];
|
||||
}
|
|
@ -4,6 +4,7 @@
|
|||
./plugins
|
||||
./keymaps.nix
|
||||
./init.nix
|
||||
./autocmds.nix
|
||||
];
|
||||
viAlias = true;
|
||||
vimAlias = true;
|
||||
|
|
Loading…
Reference in a new issue