summaryrefslogtreecommitdiffstats
path: root/nixos/modules/nixvim/nixvim.nix
blob: df97be1dfdaf9904d9566b2d9f1ee545bb7c1e05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{

  imports = [
    ./opts.nix
    ./keymaps.nix
    ./autocmds.nix
    ./plugins/plugins-bundle.nix
  ];

  programs.nixvim = {
    enable = true;

    defaultEditor = true;
    colorschemes.oxocarbon.enable = true;
  };
}