add kitty
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,6 +1,7 @@
|
||||
vim/.vim/plugged/*
|
||||
vim/.vim/.netrwhist
|
||||
wiki
|
||||
*.orig
|
||||
*.old
|
||||
__*
|
||||
*.pyc
|
||||
|
||||
97
kitty/.config/kitty/kitty.conf
Normal file
97
kitty/.config/kitty/kitty.conf
Normal file
@@ -0,0 +1,97 @@
|
||||
font_family Fantasque Sans Mono
|
||||
font_size 13.0
|
||||
disable_ligatures always
|
||||
scrollback_lines 50000
|
||||
copy_on_select yes
|
||||
open_url_modifiers ctrl
|
||||
rectangle_select_modifiers kitty_mod
|
||||
enable_audio_bell no
|
||||
remember_window_size yes
|
||||
initial_window_width 1000
|
||||
initial_window_height 700
|
||||
cursor_blink_interval 0
|
||||
clear_all_shortcuts yes
|
||||
|
||||
tab_bar_style separator
|
||||
tab_separator ""
|
||||
tab_title_template " {index}:{title} "
|
||||
|
||||
active_tab_foreground #fdf6e3
|
||||
active_tab_background #657b83
|
||||
#active_tab_background #839496
|
||||
active_tab_font_style bold
|
||||
inactive_tab_foreground #657b83
|
||||
inactive_tab_background #eee8d5
|
||||
inactive_tab_font_style bold
|
||||
|
||||
tab_bar_background #eee8d5
|
||||
|
||||
foreground #657b83
|
||||
background #fdf6e3
|
||||
|
||||
color0 #073642
|
||||
color1 #dc322f
|
||||
color2 #859900
|
||||
color3 #b58900
|
||||
color4 #268bd2
|
||||
color5 #d33682
|
||||
color6 #2aa198
|
||||
color7 #eee8d5
|
||||
color8 #002b36
|
||||
color9 #cb4b16
|
||||
color10 #586e75
|
||||
color11 #657b83
|
||||
color12 #839496
|
||||
color13 #6c71c4
|
||||
color14 #93a1a1
|
||||
color15 #fdf6e3
|
||||
|
||||
cursor #657b83
|
||||
cursor_text_color #fdf6e3
|
||||
|
||||
url_color #657b83
|
||||
|
||||
selection_foreground #fdf6e3
|
||||
selection_background #657b83
|
||||
|
||||
term xterm-256color
|
||||
|
||||
map kitty_mod+c copy_to_clipboard
|
||||
map kitty_mod+v paste_from_clipboard
|
||||
map kitty_mod+s paste_from_selection
|
||||
map shift+insert paste_from_selection
|
||||
|
||||
map kitty_mod+up scroll_line_up
|
||||
map kitty_mod+k scroll_line_up
|
||||
map kitty_mod+down scroll_line_down
|
||||
map kitty_mod+j scroll_line_down
|
||||
map kitty_mod+page_up scroll_page_up
|
||||
map kitty_mod+page_down scroll_page_down
|
||||
map kitty_mod+home scroll_home
|
||||
map kitty_mod+end scroll_end
|
||||
|
||||
map ctrl+right next_tab
|
||||
map ctrl+left previous_tab
|
||||
map kitty_mod+t new_tab
|
||||
map kitty_mod+w close_tab
|
||||
map kitty_mod+right move_tab_forward
|
||||
map kitty_mod+left move_tab_backward
|
||||
|
||||
map alt+1 goto_tab 1
|
||||
map alt+2 goto_tab 2
|
||||
map alt+3 goto_tab 3
|
||||
map alt+4 goto_tab 4
|
||||
map alt+5 goto_tab 5
|
||||
map alt+6 goto_tab 6
|
||||
map alt+7 goto_tab 7
|
||||
map alt+8 goto_tab 8
|
||||
map alt+9 goto_tab 9
|
||||
map alt+0 goto_tab 10
|
||||
|
||||
map kitty_mod+equal change_font_size all +1.0
|
||||
map kitty_mod+minus change_font_size all -1.0
|
||||
map kitty_mod+backspace change_font_size all 0
|
||||
|
||||
map kitty_mod+e kitten hints
|
||||
map f11 toggle_fullscreen
|
||||
map kitty_mod+u kitten unicode_input
|
||||
Reference in New Issue
Block a user