Kitty terminal

10.08.23

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

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

152722bc-9ebf-4720-b2c7-a1fafb8b255995560b7c92a21a71.md.png

~/.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.90    
#window_margin_width 15 
active_border_color #fabd2f
#window_border_width 1.0pt

# Copy & Paste
copy_on_select yes
#copy_or_interrupt
#paste_from_clipboard

# HOTKEYS
map alt+c copy_to_clipboard
map alt+v paste_from_clipboard
map shift+insert 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 alt+f5 load_config_file
map shift+left previous_window
map shift+right next_window

# OTHER
editor nvim
visual_bell_duration 0.6
window_alert_on_bell yes
enable_audio_bell no
visual_bell_color #000000
tab_activity_symbol "🔔 "
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

# gruvbox dark by morhetz, https://github.com/morhetz/gruvbox
# This work is licensed under the terms of the MIT license.
# For a copy, see https://opensource.org/licenses/MIT.

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

Похожие посты