Linux
November 5, 2022

Kitty terminal

Распробовал «Кису», повозился с настройками сформировал свой конфиг. Tilix уходит на пенсию

Kitty — это программируемый эмулятор терминала на основе OpenGL. Kitty поддерживает мозаичный режим (тайлинг), TrueColor, лигатуры и расширения для работы с клавиатурой и рендеринга изображений.

~/.config/kitty/kitty.conf

# FONT
font_family     JetBrainsMono-Medium
bold_font        auto
italic_font      auto
bold_italic_font auto
font_size 12.0
background_opacity 0.93    

# Copy & Paste
copy_on_select yes
paste_from_clipboard

# HOTKEYS
map alt+c copy_to_clipboard
map alt+v paste_from_clipboard
map ctrl+n new_tab_with_cwd
map ctrl+right next_tab
map ctrl+left previous_tab
map ctrl+q close_tab
map ctrl+up scroll_line_up
map ctrl+down scroll_line_down
map shift+up scroll_page_up
map shift+down scroll_page_down
map ctrl+equal change_font_size all +2.0
map ctrl+minus change_font_size all -2.0
map f5 load_config_file

# OTHER
editor nvim
visual_bell_duration 0.6
window_alert_on_bell yes
enable_audio_bell no
visual_bell_color #000000
cursor_blink_interval -4
update_check_interval 0
cursor_shape block
shell_integration no-cursor
strip_trailing_spaces always

# TABS
tab_bar_style fade
tab_bar_edge down 
tab_bar_align center
tab_powerline_style slanted 
active_tab_foreground   #eee
active_tab_background   #000
inactive_tab_foreground #111
inactive_tab_background #666
inactive_tab_font_style normal
active_tab_font_style bold

# HYPERLINKS
detect_urls yes
allow_hyperlinks yes
open_url_with default
url_prefixes file ftp ftps gemini git gopher http https irc ircs kitty mailto news sftp ssh
url_color #00bd36
url_style curly

# COLOR
include /home/$USER/.config/kitty/themes/gruvbox_dark.conf

.config/kitty/themes/gruvbox_dark.conf

background  #282828
foreground  #ebdbb2

cursor                #928374

selection_foreground  #282828
selection_background  #7c6f64

color0  #282828
color8  #928374

# red
color1                #cc241d
# light red
color9                #fb4934

# green
color2                #98971a
# light green
color10               #b8bb26

# yellow
color3                #d79921
# light yellow
color11               #fabd2d

# blue
color4                #458588
# light blue
color12               #83a598

# magenta
color5                #b16286
# light magenta
color13               #d3869b

# cyan
color6                #689d6a
# lighy cyan
color14               #8ec07c

# light gray
color7                #a89984
# dark gray
color15               #928374