dotfiles/home/.config/kitty/kitty.conf

89 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

# Fonts & Text style
font_family Monaspace Krypton
2023-07-22 22:25:16 +00:00
bold_font auto
italic_font auto
bold_italic_font auto
font_size 11
disable_ligatures never
2023-07-22 22:25:16 +00:00
# Dark Theme
2023-07-22 22:25:16 +00:00
foreground #d8dee9
background #191919
# Light Theme (for screenshots in papers)
#foreground = "#191919";
#background = "#FFFFFF";
2023-07-22 22:25:16 +00:00
# URLs
2023-07-22 22:25:16 +00:00
url_color #0087bd
url_style curly
# Cursor
cursor #D0D0D0
cursor_shape underline
cursor_blink_interval 0.5
cursor_stop_blinking_after 15.0
# Background
background_opacity 0.9
2023-07-22 22:25:16 +00:00
dynamic_background_opacity yes
background_blur 2
# Window size
remember_window_size no
initial_window_width 640
initial_window_height 400
# Bell
## flash the screen for this duration when bell occurs
visual_bell_duration 0.0
## disable audio bells
2023-07-22 22:25:16 +00:00
enable_audio_bell no
# Misc
## don't check for updates, we have a package manager...
2023-07-22 22:25:16 +00:00
update_check_interval 0
## don't ask for confirmation if window gets closed
2023-10-10 19:27:47 +00:00
confirm_os_window_close 0
## Capture up to 10k lines for scrolling
scrollback_lines 10000
## chars considered part of word when double clicking
select_by_word_characters :@-./_~?&=%+#
# Keybindings
map ctrl+alt+c copy_to_clipboard
map ctrl+alt+v paste_from_clipboard
map ctrl+c copy_or_interrupt
map ctrl+shift+, move_tab_backward
map ctrl+shift+. move_tab_forward
map ctrl+shift+0 tenth_window
map ctrl+shift+1 first_window
map ctrl+shift+2 second_window
map ctrl+shift+3 third_window
map ctrl+shift+4 fourth_window
map ctrl+shift+5 fifth_window
map ctrl+shift+6 sixth_window
map ctrl+shift+7 seventh_window
map ctrl+shift+8 eighth_window
map ctrl+shift+9 ninth_window
map ctrl+shift+[ previous_window
map ctrl+shift+] next_window
map ctrl+shift+` move_window_to_top
map ctrl+shift+alt+t set_tab_title
map ctrl+shift+b move_window_backward
map ctrl+shift+backspace restore_font_size
map ctrl+shift+down decrease_font_size
map ctrl+shift+enter new_window
map ctrl+shift+f move_window_forward
map ctrl+shift+l next_layout
map ctrl+shift+left previous_tab
map ctrl+shift+n new_os_window
map ctrl+shift+q close_tab
map ctrl+shift+right next_tab
map ctrl+shift+t new_tab
map ctrl+shift+up increase_font_size
map ctrl+shift+v paste_from_clipboard
map ctrl+shift+w close_window
2023-07-22 22:25:16 +00:00
# vi: ft=conf