48 lines
1.2 KiB
Bash
48 lines
1.2 KiB
Bash
export ZSH="$HOME/.oh-my-zsh"
|
|
ZSH_THEME="afowler"
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# :: Zplug - ZSH plugin manager
|
|
export ZPLUG_HOME=$HOME/.zplug
|
|
|
|
# Check if zplug is installed
|
|
if [[ ! -d $ZPLUG_HOME ]]; then
|
|
git clone https://github.com/zplug/zplug $ZPLUG_HOME
|
|
source $ZPLUG_HOME/init.zsh && zplug update --self
|
|
fi
|
|
|
|
# Essential
|
|
source $ZPLUG_HOME/init.zsh
|
|
|
|
# Zplug plugins
|
|
zplug "zplug/zplug", hook-build:"zplug --self-manage"
|
|
|
|
# zsh users
|
|
zplug "zsh-users/zsh-syntax-highlighting", defer:3, on:"zsh-users/zsh-syntax-highlighting"
|
|
|
|
# Plugins from oh my zsh
|
|
zplug "plugins/git", from:oh-my-zsh
|
|
zplug "plugins/command-not-found", from:oh-my-zsh
|
|
zplug load
|
|
|
|
# Attach to a tmux session on startup
|
|
if [ -z "$TMUX" ] && [ -n "$SSH_CONNECTION" ]; then
|
|
tmux attach -t Default || tmux new -s Default
|
|
fi
|
|
|
|
# Show a quote on startup
|
|
if [ -z "$TMUX" ]; then
|
|
fortune -s
|
|
echo " ---"
|
|
fi
|
|
|
|
export NVM_DIR="$HOME/.nvm"
|
|
if [ -s "$NVM_DIR/nvm.sh" ]; then
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
fi
|
|
|
|
source ~/.aliases
|
|
fpath+=~/.zfunc
|
|
autoload -U compinit; compinit -d
|