Files
My_NixOS_Config/nixos/core/programs/neovim.nix

19 lines
247 B
Nix

{
inputs,
lib,
config,
pkgs,
unstablePkgs,
...
}: {
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
withPython3 = true;
withNodeJs = true;
withRuby = true;
};
}