diff options
author | tv <tv@krebsco.de> | 2023-12-12 20:15:58 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-12-12 20:15:58 +0100 |
commit | 9a74971fa129fdb52c5cc38f6663521212b6d683 (patch) | |
tree | ba586f6f896ed4126572858d669b5d54b1a28837 | |
parent | 2f5a62e768d3111ac7d6884c1a91d06d51447cbf (diff) |
vim: disable nano
-rw-r--r-- | configs/vim.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/vim.nix b/configs/vim.nix index b06b196..f826144 100644 --- a/configs/vim.nix +++ b/configs/vim.nix @@ -8,6 +8,8 @@ environment.variables.EDITOR = lib.mkForce "vim"; environment.variables.VIMINIT = ":so /etc/vimrc"; + + programs.nano.enable = false; }; base-plugins = [ |