19 lines
250 B
Nix
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;
|
|
};
|
|
}
|