Files
nixos-config/profiles/base/home-manager/neovim/default.nix
2025-08-05 14:47:52 +02:00

24 lines
327 B
Nix

{ nixvim, ... }:
{
imports = [
nixvim.homeManagerModules.nixvim
./options.nix
./plugins
];
home.shellAliases.v = "nvim";
programs.nixvim = {
enable = true;
defaultEditor = true;
nixpkgs.useGlobalPackages = true;
viAlias = true;
vimAlias = true;
luaLoader.enable = true;
};
}