nixos-config/modules/home/nvim.nix

8 lines
86 B
Nix
Raw Normal View History

2023-11-05 11:40:44 +01:00
{ pkgs, ... }:
{
2024-01-15 19:45:38 +01:00
programs.neovim = {
enable = true;
vimAlias = true;
};
2023-11-05 11:40:44 +01:00
}