Skip to content

Commit

Permalink
Adds Kitty config
Browse files Browse the repository at this point in the history
  • Loading branch information
bvobart committed Aug 18, 2023
1 parent 98722f9 commit ae10a18
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 0 deletions.
1 change: 1 addition & 0 deletions desktop/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ function copy_dotfiles() {
}

copy_dotfiles alacritty
copy_dotfiles kitty
# copy_dotfiles i3
copy_dotfiles rofi
# copy_dotfiles polybar
111 changes: 111 additions & 0 deletions desktop/kitty/kitty.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
# Shell
shell /bin/fish

# Fonts
font_family Roboto Mono
bold_font auto
italic_font auto
bold_italic_font auto

font_size 10.0

force_ltr no

font_features none


# Cursors
cursor #d4d7ff

cursor_shape beam
cursor_underline_thickness 1.5

cursor_blink_interval .7


# Scrollback
scrollback_lines 2000

scrollback_fill_enlarged_window no

wheel_scroll_multiplier 8.0

wheel_scroll_min_lines 1


# Performance tuning
repaint_delay 20

input delay 5

sync_to_monitor yes


# Terminal bell
enable_audio_bell no


# Tab Bar
tab_bar_edge bottom

tab_bar_margin_width 0.0
tab_bar_margin_height 0.0 0.0

tab_bar_style powerline

tab_bar_align left

tab_bar_min_tabs 2

tab_switch_strategy previous

tab_powerline_style round

tab_title_max_length 0
tab_title_template "{fmt.fg.red}{bell_symbol}{activity_symbol}{fmt.fg.tab}{title}"


# Colorscheme
foreground #d4d7ff
background #12121f

background_opacity 1.0

background_tint 1.0

dim_opacity 0.75

selection_foreground #12121f
selection_background #d4d7ff

# Black
color0 #12121f
color8 #29293f

# Red
color1 #d95177
color9 #d54c73

# Green
color2 #7bdba6
color10 #78dca7

# Yellow
color3 #fcf4a2
color11 #fcf295

# Blue
color4 #759eea
color12 #6d98e8

# Purple
color5 #908cdb
color13 #837dd7

# Cyan
color6 #6be5e3
color14 #65dedc

# White
color7 #d4d7ff
color15 #f4f7ff

0 comments on commit ae10a18

Please sign in to comment.