2015-09-07 00:51:36 -07:00
|
|
|
HISTFILE=~/.histfile
|
|
|
|
|
HISTSIZE=1000
|
|
|
|
|
SAVEHIST=1000
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
source ~/antigen.zsh
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
antigen use oh-my-zsh
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
antigen bundle zsh-users/zsh-syntax-highlighting
|
|
|
|
|
antigen bundle zsh-users/zsh-history-substring-search
|
|
|
|
|
antigen bundle rupa/z
|
|
|
|
|
antigen bundle git
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
# OSX specific
|
2017-07-28 01:04:53 -07:00
|
|
|
if [[ "$(uname -s)" = "Darwin" ]]; then
|
|
|
|
|
antigen bundle brew
|
|
|
|
|
antigen bundle brew-cask
|
|
|
|
|
fi
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
antigen theme bureau
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
antigen apply
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
source ~/dotfiles/zsh-files/zsh_opts.zsh
|
|
|
|
|
source ~/dotfiles/zsh-files/exports.zsh
|
2015-09-10 14:58:11 -07:00
|
|
|
source ~/dotfiles/zsh-files/functions.zsh
|
|
|
|
|
source ~/dotfiles/zsh-files/aliases.zsh
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
zstyle :compinstall filename '/Users/haak/.zshrc'
|
2013-08-02 00:13:05 -07:00
|
|
|
|
2015-09-07 00:51:36 -07:00
|
|
|
autoload -Uz compinit
|
|
|
|
|
compinit
|
2014-04-24 23:16:10 -07:00
|
|
|
|
2014-05-30 07:52:54 +00:00
|
|
|
zle -N fancy-ctrl-z
|
|
|
|
|
bindkey '^Z' fancy-ctrl-z
|
2015-11-11 19:54:30 -08:00
|
|
|
|
|
|
|
|
eval "$(direnv hook zsh)"
|
2015-12-02 16:02:10 -08:00
|
|
|
|
2016-09-16 23:14:44 -07:00
|
|
|
export NVM_DIR="/home/haak/.nvm"
|
|
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
|
|
|
|
|
|
|
|
|
|
autoload bashcompinit
|
2017-07-28 01:04:53 -07:00
|
|
|
export PATH="$HOME/.linuxbrew/bin:$PATH"
|
2016-09-16 23:14:44 -07:00
|
|
|
bashcompinit
|
|
|
|
|
. $HOME/.asdf/asdf.sh
|
|
|
|
|
. $HOME/.asdf/completions/asdf.bash
|
2018-09-29 00:32:16 -07:00
|
|
|
|
|
|
|
|
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
|