gruvbox testing

This commit is contained in:
iFargle 2023-07-01 21:02:03 +09:00
parent c73097906f
commit c9cc90d176
3 changed files with 13 additions and 3 deletions

View file

@ -11,12 +11,11 @@
# Themes
vim-airline-themes
nord-vim
gruvbox
dracula-vim
];
settings = { ignorecase = true; };
extraConfig = ''
colorscheme dracula
set mouse=a
set number
syntax on
@ -29,7 +28,10 @@
set expandtab
set softtabstop=2
set cursorline
set AirlineTheme wombat
# Theming
colorscheme gruvbox
AirlineTheme gruvbox
'';
};
}

View file

@ -46,6 +46,7 @@
imports = [
./gnome/gruvbox-theme.nix
./gnome/nordic-theme.nix
];
# Idea... Move these to a separate file and tie it into dconf sections that load the theme automatically when I want it.
}

View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }: {
environment.systemPackages = with pkgs; [
nordic
nordzy-icon-theme
nordzy-cursor-theme
];
}