58 lines
1 KiB
Bash
58 lines
1 KiB
Bash
# Path to your oh-my-zsh installation.
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
ZSH_THEME="robbyrussell"
|
|
|
|
# plugins
|
|
if [ -f ~/.dotfiles/shell/plugins ]
|
|
then
|
|
source ~/.dotfiles/shell/plugins
|
|
else
|
|
# plugins
|
|
plugins=(
|
|
git
|
|
pip
|
|
screen
|
|
z
|
|
)
|
|
fi
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
|
|
# User configuration
|
|
|
|
# Helper Functions
|
|
# Returns whether the given command is executable or aliased.
|
|
_has() {
|
|
return $( whence $1 >/dev/null )
|
|
}
|
|
|
|
# Set vim as default editor
|
|
export EDITOR='vim'
|
|
|
|
# aliases
|
|
alias ll='ls -l'
|
|
alias la='ls -la'
|
|
alias :q='exit'
|
|
alias fresh="source ~/.zshrc"
|
|
|
|
# localcommands
|
|
if [ -f ~/.dotfiles/shell/localcommands ]
|
|
then
|
|
source ~/.dotfiles/shell/localcommands
|
|
fi
|
|
|
|
# Tmuxinator autocomplete
|
|
if [ -f ~/.bin/tmuxinator.zsh ]; then
|
|
source ~/.bin/tmuxinator.zsh
|
|
fi
|
|
|
|
# fzf + ag configuration
|
|
if _has fzf && _has ag; then
|
|
export FZF_CTRL_T_COMMAND='ag --hidden --nocolor --ignore .git -g ""'
|
|
fi
|
|
|
|
export FZF_ALT_C_COMMAND='find . -type d'
|
|
|
|
export PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin"
|