39 lines
669 B
Bash
Raw Normal View History

2018-03-01 00:47:14 +01:00
export ZSH=/home/roman/.oh-my-zsh
DEFAULT_USER="roman"
ZSH_THEME="robbyrussell" #old=("agnoster")
2018-03-01 00:47:14 +01:00
ZSH_TMUX_AUTOSTART="true"
ZSH_TMUX_AUTOQUIT="true"
CASE_SENSITIVE="true"
COMPLETION_WAITING_DOTS="true"
2018-03-01 00:47:14 +01:00
# Plugin list
plugins=(
tmux
jump
systemd
docker
ptyhon
colored-man-pages
command-not-found # needs package pkgfile
)
2018-03-01 00:47:14 +01:00
source $ZSH/oh-my-zsh.sh
# Exports
2018-03-01 00:47:14 +01:00
export EDITOR="nvim"
export PATH=~/.bin:$PATH
export LANG=de_DE.UTF-8
2018-03-01 00:47:14 +01:00
# load aliases
source ~/.config/aliases
# fix for termite VTE Terminal
if [[ $TERM == xterm-termite ]]; then
. /etc/profile.d/vte.sh
__vte_osc7
fi
2018-03-01 00:47:14 +01:00
# add ruby to path
#PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"