Initial commit

This commit is contained in:
Pedro Alves 2020-12-30 01:05:51 +00:00
commit 2c9631997f
9 changed files with 490 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.programs.nixvim.colorschemes.gruvbox;
in {
options = {
programs.nixvim.colorschemes.gruvbox = {
enable = mkEnableOption "Enable gruvbox";
};
};
config = mkIf cfg.enable {
programs.nixvim = {
colorscheme = "gruvbox";
extraPlugins = [ pkgs.vimPlugins.gruvbox ];
};
};
}