diff --git a/install.sh b/install.sh index 5f45b4f..c880811 100755 --- a/install.sh +++ b/install.sh @@ -16,7 +16,7 @@ workspace_link() { } 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..." # GIT @@ -47,6 +47,10 @@ workspace_link bin .bin workspace_backup .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 workspace_backup .vimrc workspace_link vim/vimrc .vimrc diff --git a/kitty/kitty.conf b/kitty/kitty.conf new file mode 100644 index 0000000..754ff2b --- /dev/null +++ b/kitty/kitty.conf @@ -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