42 lines
715 B
Bash
Raw Permalink Normal View History

##################
# ZSH Config File
#
2018-03-01 00:47:14 +01:00
# General
2018-03-01 00:47:14 +01:00
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
# Exports
2018-03-01 00:47:14 +01:00
export EDITOR="nvim"
export PATH=~/.bin:$PATH
export LANG=de_DE.UTF-8
export ZSH=/home/roman/.oh-my-zsh
2018-03-01 00:47:14 +01:00
# load stuff
source $ZSH/oh-my-zsh.sh
2018-03-01 00:47:14 +01:00
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"