Add kitty theme, update zshrc

This commit is contained in:
Aaron
2020-05-07 02:51:14 +02:00
parent 5a8de84203
commit 31dab49fd1
3 changed files with 29 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
macos_option_as_alt no
# Themes
include ./theme.conf
# Fonts # Fonts
font_family DejaVu Sans Mono font_family DejaVu Sans Mono
font_size 10 font_size 10

21
kitty/theme.conf Normal file
View File

@@ -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

8
zshrc
View File

@@ -1,9 +1,8 @@
# Path settings # Path settings
# export PATH=$HOME/bin:/usr/local/bin:$PATH export PATH=/usr/local/bin:$PATH
PATH=$PATH:~/.cargo/bin/:~/go/:$HOME/bin
# Path to oh-my-zsh installation. # 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 # Don't try to display a powerlinefont theme in a tty
if [[ $TERM == "linux" ]] || [[ $TERM == "screen" ]] ; then if [[ $TERM == "linux" ]] || [[ $TERM == "screen" ]] ; then
@@ -15,7 +14,7 @@ fi
# Uncomment the following line to disable bi-weekly auto-update checks. # Uncomment the following line to disable bi-weekly auto-update checks.
DISABLE_AUTO_UPDATE="false" DISABLE_AUTO_UPDATE="false"
# Auto update zsh # Auto update zsh
export UPDATE_ZSH_DAYS=13 UPDATE_ZSH_DAYS=13
# Disable auto-setting terminal title. # Disable auto-setting terminal title.
DISABLE_AUTO_TITLE="true" DISABLE_AUTO_TITLE="true"
# Timestamps in zsh history # Timestamps in zsh history
@@ -28,7 +27,6 @@ plugins=(
git git
last-working-dir last-working-dir
fbterm fbterm
oc
ssh-agent ssh-agent
gpg-agent gpg-agent
) )