From b5daa2039ae46cf0ef02f5c4dde3de4a58ee4af6 Mon Sep 17 00:00:00 2001 From: afonsofrancof Date: Tue, 13 Feb 2024 17:50:02 +0000 Subject: [PATCH] [alacritty] Fixed themes --- .config/alacritty/alacritty.toml | 5 +++-- .../themes/{gruvbox_material_dark.toml => gruvbox_dark.toml} | 0 .../{gruvbox_material_light.toml => gruvbox_light.toml} | 2 +- .zshrc | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) rename .config/alacritty/themes/{gruvbox_material_dark.toml => gruvbox_dark.toml} (100%) rename .config/alacritty/themes/{gruvbox_material_light.toml => gruvbox_light.toml} (95%) diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml index 0422d9f..be62564 100644 --- a/.config/alacritty/alacritty.toml +++ b/.config/alacritty/alacritty.toml @@ -1,4 +1,4 @@ -import = ["~/.config/alacritty/themes/gruvbox_material_dark.toml"] +import = ["~/.config/alacritty/themes/gruvbox_light.toml"] [env] TERM = "xterm-256color" @@ -11,7 +11,8 @@ family = "FiraCode Nerd Font Mono" style = "Retina" [window] -opacity = 0.95 +opacity = 1 +blur = false option_as_alt = "Both" dynamic_padding = true decorations= "Buttonless" diff --git a/.config/alacritty/themes/gruvbox_material_dark.toml b/.config/alacritty/themes/gruvbox_dark.toml similarity index 100% rename from .config/alacritty/themes/gruvbox_material_dark.toml rename to .config/alacritty/themes/gruvbox_dark.toml diff --git a/.config/alacritty/themes/gruvbox_material_light.toml b/.config/alacritty/themes/gruvbox_light.toml similarity index 95% rename from .config/alacritty/themes/gruvbox_material_light.toml rename to .config/alacritty/themes/gruvbox_light.toml index d43ac16..de3705f 100644 --- a/.config/alacritty/themes/gruvbox_material_light.toml +++ b/.config/alacritty/themes/gruvbox_light.toml @@ -2,7 +2,7 @@ # Default colors [colors.primary] -background = '#fbf1c7' +background = '#f2e5bc' foreground = '#654735' # Normal colors diff --git a/.zshrc b/.zshrc index f1bafe5..cf30db0 100644 --- a/.zshrc +++ b/.zshrc @@ -73,7 +73,7 @@ ZSH_CUSTOM=/Users/afonso/.config/zsh #THEME -source $HOME/.config/zsh/themes/gruvbox_dark.zsh +source $HOME/.config/zsh/themes/gruvbox_light.zsh source $HOME/.config/zsh/overrides.zsh plugins=(git sudo macos tmux command-not-found web-search zsh-autosuggestions zsh-history-substring-search zsh-syntax-highlighting fzf-tab)