feat: add light theme

This commit is contained in:
Jacob Bachmann 2024-03-25 17:17:53 +01:00
parent 1e8844c6a3
commit fdee4f201d
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
8 changed files with 130 additions and 5 deletions

View file

@ -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;

View file

@ -27,6 +27,7 @@ in
"window.titleBarStyle" = "custom";
"window.menuBarVisibility" = "toggle";
"workbench.colorTheme" = "Default Light Modern";
"workbench.iconTheme" = "material-icon-theme";
"extensions.ignoreRecommendations" = true;