27 lines
789 B
Plaintext
27 lines
789 B
Plaintext
|
# Path to your oh-my-zsh installation.
|
||
|
export ZSH="$HOME/.config/oh-my-zsh"
|
||
|
|
||
|
ZSH_THEME="robbyrussell"
|
||
|
|
||
|
CASE_SENSITIVE="false"
|
||
|
|
||
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
||
|
DISABLE_AUTO_UPDATE="false"
|
||
|
|
||
|
export UPDATE_ZSH_DAYS=50
|
||
|
|
||
|
# 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"
|
||
|
|
||
|
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
||
|
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
||
|
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||
|
# Add wisely, as too many plugins slow down shell startup.
|
||
|
plugins=(
|
||
|
git
|
||
|
)
|
||
|
|
||
|
source $ZSH/oh-my-zsh.sh
|