22 lines
325 B
Bash
22 lines
325 B
Bash
|
export ZSH=$HOME/.oh-my-zsh
|
||
|
ZSH_THEME="gallifrey"
|
||
|
ENABLE_CORRECTION="true"
|
||
|
COMPLETION_WAITING_DOTS="true"
|
||
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||
|
HIST_STAMPS="yyyy-mm-dd"
|
||
|
plugins=(
|
||
|
git
|
||
|
git-extras
|
||
|
tmux
|
||
|
ssh
|
||
|
command-not-found
|
||
|
systemd
|
||
|
debian
|
||
|
gpg-agent
|
||
|
pip
|
||
|
common-aliases
|
||
|
web-search
|
||
|
)
|
||
|
|
||
|
source $ZSH/oh-my-zsh.sh
|