changed wezterm cursor color

This commit is contained in:
Nickiel12 2022-11-27 19:44:36 -08:00
parent bdcf480aee
commit 34b0fc88b4

View file

@ -2,6 +2,8 @@
let let
cursor_color = "#2CCCE4";
in in
{ {
programs.wezterm = { programs.wezterm = {
@ -20,6 +22,12 @@ in
]; ];
foreground = "#F4EFD6"; foreground = "#F4EFD6";
background = "#202020"; background = "#202020";
cursor_bg = cursor_color;
cursor_border = cursor_color;
selection_bg = "#8ED1FC";
selection_fg = "black";
}; };
}; };