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

View file

@ -46,6 +46,7 @@
imports = [ imports = [
./gnome/gruvbox-theme.nix ./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. # 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
];
}