From b70e3c9ce04cad6eb86f179eb311471801e9fbeb Mon Sep 17 00:00:00 2001 From: Ranomier <> Date: Wed, 15 Jan 2025 21:32:41 +0100 Subject: [PATCH] alias for nvim to vi and vim --- modules/software/default.nix | 1 + modules/software/neovim.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 modules/software/neovim.nix diff --git a/modules/software/default.nix b/modules/software/default.nix index c370586..ea3ff15 100644 --- a/modules/software/default.nix +++ b/modules/software/default.nix @@ -9,5 +9,6 @@ ./virt.nix ./android.nix #./mpv.nix + ./neovim.nix ]; } diff --git a/modules/software/neovim.nix b/modules/software/neovim.nix new file mode 100644 index 0000000..a91b259 --- /dev/null +++ b/modules/software/neovim.nix @@ -0,0 +1,7 @@ +{...}: { + programs.neovim = { + enable = true; + viAlias = true; + vimAlias = true; + }; +}