nixos/modules/shell/neovim.nix
2025-05-06 23:00:26 +02:00

9 lines
128 B
Nix

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