20 lines
231 B
Nix
20 lines
231 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
builtins,
|
|
...
|
|
}: {
|
|
programs.neovim = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
|
|
configure = {
|
|
customRC = ''
|
|
set number
|
|
'';
|
|
};
|
|
};
|
|
}
|