From 31dab49fd19e5fbd7462a955f438da506c624760 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 7 May 2020 02:51:14 +0200 Subject: [PATCH] Add kitty theme, update zshrc --- kitty/kitty.conf | 5 +++++ kitty/theme.conf | 21 +++++++++++++++++++++ zshrc | 8 +++----- 3 files changed, 29 insertions(+), 5 deletions(-) create mode 100644 kitty/theme.conf diff --git a/kitty/kitty.conf b/kitty/kitty.conf index 8e519d9..7d1c976 100644 --- a/kitty/kitty.conf +++ b/kitty/kitty.conf @@ -1,3 +1,8 @@ +macos_option_as_alt no + +# Themes +include ./theme.conf + # Fonts font_family DejaVu Sans Mono font_size 10 diff --git a/kitty/theme.conf b/kitty/theme.conf new file mode 100644 index 0000000..2df3efd --- /dev/null +++ b/kitty/theme.conf @@ -0,0 +1,21 @@ +background #202020 +foreground #d0d0d0 +cursor #d0d0d0 +selection_background #303030 +color0 #151515 +color8 #505050 +color1 #ac4142 +color9 #ac4142 +color2 #7e8d50 +color10 #7e8d50 +color3 #e5b566 +color11 #e5b566 +color4 #6c99ba +color12 #6c99ba +color5 #9e4e85 +color13 #9e4e85 +color6 #7dd5cf +color14 #7dd5cf +color7 #d0d0d0 +color15 #f5f5f5 +selection_foreground #202020 diff --git a/zshrc b/zshrc index 7c7eb1b..81bf51d 100644 --- a/zshrc +++ b/zshrc @@ -1,9 +1,8 @@ # Path settings -# export PATH=$HOME/bin:/usr/local/bin:$PATH -PATH=$PATH:~/.cargo/bin/:~/go/:$HOME/bin +export PATH=/usr/local/bin:$PATH # Path to oh-my-zsh installation. -ZSH=/usr/share/oh-my-zsh/ +export ZSH=/usr/share/oh-my-zsh/ # Don't try to display a powerlinefont theme in a tty if [[ $TERM == "linux" ]] || [[ $TERM == "screen" ]] ; then @@ -15,7 +14,7 @@ fi # Uncomment the following line to disable bi-weekly auto-update checks. DISABLE_AUTO_UPDATE="false" # Auto update zsh -export UPDATE_ZSH_DAYS=13 +UPDATE_ZSH_DAYS=13 # Disable auto-setting terminal title. DISABLE_AUTO_TITLE="true" # Timestamps in zsh history @@ -28,7 +27,6 @@ plugins=( git last-working-dir fbterm - oc ssh-agent gpg-agent )