diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-15 15:07:43 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-15 15:07:43 -0700 |
commit | fc646ea695fdedad9463e608651f986bcf10969e (patch) | |
tree | 7a44d2c28f36ce1e03512ce4174733cdaf4a16a4 | |
parent | zsh: switch to zsh as the default shell (diff) | |
download | world-fc646ea695fdedad9463e608651f986bcf10969e.tar.gz |
terminal: once again, fix the colors
-rw-r--r-- | home/terminal/alacritty/default.nix | 6 | ||||
-rw-r--r-- | home/zsh/prompt.zsh | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/home/terminal/alacritty/default.nix b/home/terminal/alacritty/default.nix index 72a6d33..a16b929 100644 --- a/home/terminal/alacritty/default.nix +++ b/home/terminal/alacritty/default.nix @@ -11,6 +11,12 @@ in { draw_bold_text_with_bright_colors = true; selection = { save_to_clipboard = true; }; font = { size = 12; }; + colors = { + primary = { + foreground = "#2E3436"; + background = "#EEEEEE"; + }; + }; cursor = { style.blinking = "Never"; unfocused_hollow = true; diff --git a/home/zsh/prompt.zsh b/home/zsh/prompt.zsh index 1f92aa3..c1277e9 100644 --- a/home/zsh/prompt.zsh +++ b/home/zsh/prompt.zsh @@ -1,4 +1 @@ -fg_green=$'%{\e[1;32m%}' -fg_no_colour=$'%{\e[0m%}' - -PROMPT="%K{cyan}%F{black}%m%k%f ${fg_green}%~${fg_no_colour} %% " +PROMPT="%K{cyan}%F{black}%m%k%f %~ %% " |