.dotfiles/shell/zshrc

66 lines
1.3 KiB
Bash
Raw Normal View History

2018-08-18 13:15:18 +02:00
# Path to your oh-my-zsh installation.
2018-11-25 11:32:52 +01:00
export ZSH="$HOME/.oh-my-zsh"
2018-08-18 13:15:18 +02:00
# plugins
if [ -f ~/.dotfiles/shell/plugins ]
then
source ~/.dotfiles/shell/plugins
else
plugins=(
git
pip
screen
laravel
2020-11-05 05:02:25 +01:00
dirhistory
per-directory-history
z
)
fi
2018-08-18 13:15:18 +02:00
source $ZSH/oh-my-zsh.sh
2020-12-19 19:42:26 +01:00
2018-08-18 13:15:18 +02:00
# User configuration
# Helper Functions
# Returns whether the given command is executable or aliased.
_has() {
return $( whence $1 >/dev/null )
}
2018-08-18 13:15:18 +02:00
2018-12-07 12:15:50 +01:00
# Set vim as default editor
export EDITOR='vim'
# aliases
2018-08-18 13:15:18 +02:00
alias ll='ls -l'
alias la='ls -la'
2019-01-19 16:34:16 +01:00
alias :q='exit'
alias fresh="source ~/.zshrc"
# localcommands
if [ -f ~/.dotfiles/shell/localcommands ]
2018-08-18 13:15:18 +02:00
then
source ~/.dotfiles/shell/localcommands
2018-08-18 13:15:18 +02:00
fi
2018-12-07 12:32:38 +01:00
# Tmuxinator autocomplete
if [ -f ~/.bin/tmuxinator.zsh ]; then
source ~/.bin/tmuxinator.zsh
fi
2022-02-23 00:21:58 +01:00
# Set vim as default editor
export EDITOR='nvim'
2019-01-19 16:34:16 +01:00
2019-12-11 23:23:02 +01:00
if _has ruby;
then
export PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin"
fi
2021-09-05 21:46:13 +02:00
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
[[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh"
export NVM_DIR="$HOME/.nvm"
[ -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