29 lines
734 B
Text
29 lines
734 B
Text
|
|
# Path to your oh-my-zsh installation.
|
|
export ZSH="/home/gshipunov/.oh-my-zsh"
|
|
|
|
ZSH_THEME="sunrise"
|
|
|
|
DISABLE_AUTO_UPDATE="true"
|
|
# export UPDATE_ZSH_DAYS=13
|
|
|
|
# Uncomment the following line if pasting URLs and other text is messed up.
|
|
# DISABLE_MAGIC_FUNCTIONS="true"
|
|
|
|
# Uncomment the following line if you want to disable marking untracked files
|
|
# under VCS as dirty. This makes repository status check for large repositories
|
|
# much, much faster.
|
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
|
|
|
# see 'man strftime' for details.
|
|
HIST_STAMPS="yyyy-mm-dd"
|
|
|
|
plugins=(colorize colored-man-pages)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# User configuration
|
|
export DOTFILES=$HOME/.files
|
|
source $DOTFILES/zsh/zsh-common
|
|
# hook direnv in
|
|
eval "$(direnv hook zsh)"
|