Files
nix-config/home-manager/programs/nvim/default.nix
T
autumn-the-kitty-cat ffe63a7a0d init: init
2025-11-17 22:58:39 -05:00

19 lines
250 B
Nix

{ ... }:
{
imports = [
./cmp
./plugins
./keymaps.nix
./options.nix
];
programs.nixvim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
colorschemes.catppuccin.enable = true;
};
}