alias for nvim to vi and vim

This commit is contained in:
Ranomier 2025-01-15 21:32:41 +01:00
parent fa162a9f9d
commit b70e3c9ce0
2 changed files with 8 additions and 0 deletions

View file

@ -9,5 +9,6 @@
./virt.nix ./virt.nix
./android.nix ./android.nix
#./mpv.nix #./mpv.nix
./neovim.nix
]; ];
} }

View file

@ -0,0 +1,7 @@
{...}: {
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
};
}