mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
Update kitty settings
This commit is contained in:
parent
988637093e
commit
96360d9f59
|
@ -10,30 +10,47 @@ in {
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
# General
|
# Font & Text style
|
||||||
background_opacity = "0.85";
|
font_family = "Monaspace Krypton";
|
||||||
font_family = "monospace";
|
font_size = 11;
|
||||||
font_size = 14;
|
|
||||||
disable_ligatures = "never";
|
disable_ligatures = "never";
|
||||||
|
|
||||||
|
# Dark Theme
|
||||||
|
foreground = "#d8dee9";
|
||||||
|
background = "#191919";
|
||||||
|
# White theme (for screenshots in papers)
|
||||||
|
#foreground = "#191919";
|
||||||
|
#background = "#FFFFFF";
|
||||||
|
|
||||||
|
# URLs
|
||||||
|
url_color = "#0087bd";
|
||||||
|
url_style = "curly";
|
||||||
|
|
||||||
|
# Cursor
|
||||||
|
cursor = "#D0D0D0";
|
||||||
cursor_shape = "underline";
|
cursor_shape = "underline";
|
||||||
cursor_blink_interval = "0.5";
|
cursor_blink_interval = "0.5";
|
||||||
cursor_stop_blinking_after = "15.0";
|
cursor_stop_blinking_after = "15.0";
|
||||||
scrollback_lines = 10000;
|
|
||||||
click_interval = "0.5";
|
# Background
|
||||||
select_by_word_characters = ":@-./_~?&=%+#";
|
background_opacity = "0.9";
|
||||||
|
dynamic_background_opacity = "yes";
|
||||||
|
background_blur = 2;
|
||||||
|
|
||||||
|
# Window size
|
||||||
remember_window_size = false;
|
remember_window_size = false;
|
||||||
allow_remote_control = true;
|
|
||||||
initial_window_width = 640;
|
initial_window_width = 640;
|
||||||
initial_window_height = 400;
|
initial_window_height = 400;
|
||||||
repaint_delay = 15;
|
|
||||||
input_delay = 3;
|
# Bell
|
||||||
visual_bell_duration = "0.0";
|
visual_bell_duration = "0.0"; # flash the screen for this duration when bell occurs
|
||||||
url_style = "double";
|
enable_audio_bell = false; # disable audio bells
|
||||||
open_url_with = "default";
|
|
||||||
confirm_os_window_close = 0;
|
# Misc
|
||||||
enable_audio_bell = false;
|
update_check_interval = 0; # don't check for updates, we have a package manager...
|
||||||
window_padding_width = 15;
|
confirm_os_window_close = 0; # don't ask for confirmation if window gets closed
|
||||||
window_margin_width = 10;
|
scrollback_lines = 10000; # Capture up to 10k lines for scrolling
|
||||||
|
select_by_word_characters = ":@-./_~?&=%+#"; # chars considered part of word when double clicking
|
||||||
};
|
};
|
||||||
keybindings = {
|
keybindings = {
|
||||||
"ctrl+c" = "copy_or_interrupt";
|
"ctrl+c" = "copy_or_interrupt";
|
||||||
|
|
Loading…
Reference in a new issue