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
|
# 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
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
|
@ -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.
|
||||||
}
|
}
|
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