Nix-Hyprland/nixos/modules/nixvim/nixvim.nix
2024-04-17 05:52:14 +05:00

17 lines
225 B
Nix

{
imports = [
./opts.nix
./keymaps.nix
./autocmds.nix
./plugins/plugins-bundle.nix
];
programs.nixvim = {
enable = true;
defaultEditor = true;
colorschemes.oxocarbon.enable = true;
};
}