Files
niphas/modules/vim.nix

8 lines
210 B
Nix
Raw Normal View History

2026-02-03 17:25:28 +01:00
{ lib, pkgs, ... }:
{
environment.variables.EDITOR = lib.getExe pkgs.vim-kmein;
environment.shellAliases.vi = "nvim";
environment.shellAliases.vim = "nvim";
environment.shellAliases.view = "nvim -R";
}