feat: add light theme
This commit is contained in:
parent
1e8844c6a3
commit
fdee4f201d
8 changed files with 130 additions and 5 deletions
|
|
@ -3,11 +3,15 @@ let
|
|||
common = (import ../common.nix) { pkgs = pkgs; lib = lib; };
|
||||
in
|
||||
{
|
||||
# alacritty - a cross-platform, GPU-accelerated terminal emulator
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
# custom settings
|
||||
settings = {
|
||||
import = [
|
||||
# Available themes:
|
||||
# https://github.com/alacritty/alacritty-theme
|
||||
|
||||
"${pkgs.alacritty-theme}/atom_one_light.toml"
|
||||
];
|
||||
env.TERM = "xterm-256color";
|
||||
font = {
|
||||
size = 12;
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ in
|
|||
"window.titleBarStyle" = "custom";
|
||||
"window.menuBarVisibility" = "toggle";
|
||||
|
||||
"workbench.colorTheme" = "Default Light Modern";
|
||||
"workbench.iconTheme" = "material-icon-theme";
|
||||
|
||||
"extensions.ignoreRecommendations" = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue