12 lines
235 B
Nix
12 lines
235 B
Nix
{ pkgs, inputs', ... }:
|
|
{
|
|
programs.neovim = {
|
|
defaultEditor = true;
|
|
package = inputs'.neovim.packages.default;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
enable = true;
|
|
withPython3 = false;
|
|
withRuby = false;
|
|
};
|
|
}
|