mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-22 07:33:33 +00:00
feat: add kitty config
This commit is contained in:
parent
6058d9176e
commit
8be24c73f1
2 changed files with 50 additions and 1 deletions
|
@ -16,7 +16,7 @@ workspace_link() {
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "== zplug"
|
echo "== zplug"
|
||||||
curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh
|
curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh || true
|
||||||
|
|
||||||
echo "== Copying configuration files..."
|
echo "== Copying configuration files..."
|
||||||
# GIT
|
# GIT
|
||||||
|
@ -47,6 +47,10 @@ workspace_link bin .bin
|
||||||
workspace_backup .alacritty.yml
|
workspace_backup .alacritty.yml
|
||||||
workspace_link alacritty/alacritty.yml .alacritty.yml
|
workspace_link alacritty/alacritty.yml .alacritty.yml
|
||||||
|
|
||||||
|
# KITTY
|
||||||
|
workspace_backup .config/kitty/kitty.conf
|
||||||
|
workspace_link kitty/kitty.conf .config/kitty/kitty.conf
|
||||||
|
|
||||||
# VIM
|
# VIM
|
||||||
workspace_backup .vimrc
|
workspace_backup .vimrc
|
||||||
workspace_link vim/vimrc .vimrc
|
workspace_link vim/vimrc .vimrc
|
||||||
|
|
45
kitty/kitty.conf
Normal file
45
kitty/kitty.conf
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
font_family FiraCode Nerd Font Mono
|
||||||
|
disable_ligatures never
|
||||||
|
wayland_titlebar_color system
|
||||||
|
|
||||||
|
# Onehalf Light Colorscheme for Kitty
|
||||||
|
# Based on https://github.com/sonph/onehalf
|
||||||
|
# By https://github.com/dbinary
|
||||||
|
|
||||||
|
foreground #383A42
|
||||||
|
background #FAFAFA
|
||||||
|
selection_foreground #383A42
|
||||||
|
selection_background #BFCEFF
|
||||||
|
url_color #F0F0F0
|
||||||
|
|
||||||
|
# black
|
||||||
|
color0 #383A42
|
||||||
|
color8 #383A42
|
||||||
|
|
||||||
|
# red
|
||||||
|
color1 #E45649
|
||||||
|
color9 #E45649
|
||||||
|
|
||||||
|
# green
|
||||||
|
color2 #40A14F
|
||||||
|
color10 #40A14F
|
||||||
|
|
||||||
|
# yellow
|
||||||
|
color3 #C18401
|
||||||
|
color11 #C18401
|
||||||
|
|
||||||
|
# blue
|
||||||
|
color4 #0184BC
|
||||||
|
color12 #0184BC
|
||||||
|
|
||||||
|
# magenta
|
||||||
|
color5 #A626A4
|
||||||
|
color13 #A626A4
|
||||||
|
|
||||||
|
# cyan
|
||||||
|
color6 #0997B3
|
||||||
|
color14 #0997B3
|
||||||
|
|
||||||
|
# white
|
||||||
|
color7 #FAFAFA
|
||||||
|
color15 #FAFAFA
|
Loading…
Reference in a new issue