This commit is contained in:
2026-02-03 17:25:28 +01:00
commit 0aa591b57a
8 changed files with 644 additions and 0 deletions

7
modules/vim.nix Normal file
View File

@@ -0,0 +1,7 @@
{ lib, pkgs, ... }:
{
environment.variables.EDITOR = lib.getExe pkgs.vim-kmein;
environment.shellAliases.vi = "nvim";
environment.shellAliases.vim = "nvim";
environment.shellAliases.view = "nvim -R";
}