27 lines
365 B
Nix
27 lines
365 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
nixvim,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
nixvim.homeManagerModules.nixvim
|
|
./cmp.nix
|
|
./lsp.nix
|
|
./neotree.nix
|
|
./opts.nix
|
|
./lualine.nix
|
|
./alpha.nix
|
|
./dev.nix
|
|
./nonels.nix
|
|
];
|
|
programs.nixvim = {
|
|
enable = true;
|
|
colorschemes.oxocarbon.enable = true;
|
|
plugins = {
|
|
neocord.enable = true;
|
|
};
|
|
};
|
|
}
|