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