##################
# ZSH Config File
#

# General
DEFAULT_USER="roman"
ZSH_THEME="robbyrussell"  #old=("agnoster")
ZSH_TMUX_AUTOSTART="true"
ZSH_TMUX_AUTOQUIT="true"
CASE_SENSITIVE="true"
COMPLETION_WAITING_DOTS="true"

# Plugin list
plugins=(
  tmux
  jump
  systemd
  docker
  ptyhon
  colored-man-pages
  command-not-found   # needs package pkgfile
)

# Exports
export EDITOR="nvim"
export PATH=~/.bin:$PATH
export LANG=de_DE.UTF-8
export ZSH=/home/roman/.oh-my-zsh

# load stuff
source $ZSH/oh-my-zsh.sh
source ~/.config/aliases

# fix for termite VTE Terminal
if [[ $TERM == xterm-termite ]]; then
  . /etc/profile.d/vte.sh
  __vte_osc7
fi

# add ruby to path
#PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"
