From fc646ea695fdedad9463e608651f986bcf10969e Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sun, 15 May 2022 15:07:43 -0700 Subject: terminal: once again, fix the colors --- home/terminal/alacritty/default.nix | 6 ++++++ home/zsh/prompt.zsh | 5 +---- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'home') 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 %~ %% " -- cgit 1.4.1