From 34b0fc88b47d05fc9256b72df7b3c47d103126e6 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Sun, 27 Nov 2022 19:44:36 -0800 Subject: [PATCH] changed wezterm cursor color --- modules/wezterm.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/wezterm.nix b/modules/wezterm.nix index 5337f75..1290f6f 100644 --- a/modules/wezterm.nix +++ b/modules/wezterm.nix @@ -2,6 +2,8 @@ let + cursor_color = "#2CCCE4"; + in { programs.wezterm = { @@ -20,6 +22,12 @@ in ]; foreground = "#F4EFD6"; background = "#202020"; + + cursor_bg = cursor_color; + cursor_border = cursor_color; + + selection_bg = "#8ED1FC"; + selection_fg = "black"; }; };