Nix-Hyprland/nixos/modules/nixvim/nixvim.nix

17 lines
225 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{
imports = [
./opts.nix
./keymaps.nix
./autocmds.nix
./plugins/plugins-bundle.nix
];
programs.nixvim = {
enable = true;
defaultEditor = true;
colorschemes.oxocarbon.enable = true;
};
}