.dotfiles/shell/zshrc
Jidbo ee465a644b
add fzf manually
i had to switch to the git version, since the packet was outdated, might
switch back
2020-10-25 17:11:41 +01:00

63 lines
1.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=(
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'
if _has ruby;
then
export PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin"
fi
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh