kitty: modify theme
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
019b307c18
commit
d6c7d628c1
1 changed files with 6 additions and 5 deletions
|
@ -13,6 +13,7 @@ in {
|
||||||
# https://github.com/kovidgoyal/kitty
|
# https://github.com/kovidgoyal/kitty
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
shellIntegration.mode = "no-cursor"; # Disable forced beam cursor
|
||||||
|
|
||||||
font = {
|
font = {
|
||||||
name = config.custom.font.monospace;
|
name = config.custom.font.monospace;
|
||||||
|
@ -26,8 +27,8 @@ in {
|
||||||
inactive_tab_font_style = "normal";
|
inactive_tab_font_style = "normal";
|
||||||
confirm_os_window_close = 0;
|
confirm_os_window_close = 0;
|
||||||
cursor_blink_interval = 0;
|
cursor_blink_interval = 0;
|
||||||
cursor_shape = "beam";
|
cursor_shape = "block";
|
||||||
cursor_shape_unfocused = "underline";
|
cursor_shape_unfocused = "hollow";
|
||||||
placement_strategy = "top-left"; # Partially fix padding
|
placement_strategy = "top-left"; # Partially fix padding
|
||||||
scrollback_lines = -1;
|
scrollback_lines = -1;
|
||||||
strip_trailing_spaces = "smart";
|
strip_trailing_spaces = "smart";
|
||||||
|
@ -40,15 +41,15 @@ in {
|
||||||
# Solarized Dark colors
|
# Solarized Dark colors
|
||||||
# https://ethanschoonover.com/solarized/
|
# https://ethanschoonover.com/solarized/
|
||||||
#?? kitten themes
|
#?? kitten themes
|
||||||
cursor = "none"; # Invert colors
|
cursor = "none"; # Inherit text tcolor
|
||||||
background = "#002b36";
|
background = "#002b36";
|
||||||
foreground = "#839496";
|
foreground = "#839496";
|
||||||
active_tab_background = "#93a1a1";
|
active_tab_background = "#93a1a1";
|
||||||
active_tab_foreground = "#002b36";
|
active_tab_foreground = "#002b36";
|
||||||
inactive_tab_background = "#586e75";
|
inactive_tab_background = "#586e75";
|
||||||
inactive_tab_foreground = "#002b36";
|
inactive_tab_foreground = "#002b36";
|
||||||
selection_background = "#073642"; # Affects scrollbar color
|
selection_background = "#586e75"; # Affects scrollbar color
|
||||||
selection_foreground = "none";
|
selection_foreground = "#002b36";
|
||||||
url_color = "#586e75";
|
url_color = "#586e75";
|
||||||
|
|
||||||
color0 = "#073642";
|
color0 = "#073642";
|
||||||
|
|
Loading…
Reference in a new issue