gruvbox testing
This commit is contained in:
parent
c73097906f
commit
c9cc90d176
3 changed files with 13 additions and 3 deletions
|
@ -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
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -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.
|
||||
}
|
7
desktops/gnome/nordic-theme.nix
Normal file
7
desktops/gnome/nordic-theme.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
nordic
|
||||
nordzy-icon-theme
|
||||
nordzy-cursor-theme
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue