Files
nixos-config/profiles/base/home-manager/neovim/default.nix
2025-08-05 17:12:36 +02:00

25 lines
383 B
Nix

{
imports = [
./options.nix
./plugins/oil.nix
./plugins/which-key.nix
];
home.shellAliases.v = "nvim";
programs.nixvim = {
enable = true;
defaultEditor = true;
luaLoader.enable = true;
colorschemes.catppuccin = {
enable = true;
settings = {
flavour = "latte";
};
};
clipboard.register = "unnamedplus";
};
}