nixos/modules/programs/neovim.nix
2025-05-20 21:56:01 +02:00

9 lines
128 B
Nix

_: {
config = {
programs.neovim = {
enable = true;
vimAlias = true;
defaultEditor = true;
};
};
}