Files
dotfiles/zsh/.zshrc

56 lines
1.4 KiB
Bash
Raw Normal View History

2018-07-29 16:26:51 +02:00
# Set path to work with pycharm ...
[[ "$PATH" =~ /usr/local/bin ]] || export PATH=$PATH:/usr/local/bin
2019-02-28 13:36:24 +01:00
PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
2018-07-29 16:26:51 +02:00
[[ -f ~/.zsh/.powerline_config ]] && source ~/.zsh/.powerline_config
[[ -f ~/.zsh/.user_config ]] && source ~/.zsh/.user_config
[[ -f ~/.zsh/.virtual_env_config.zsh ]] && source ~/.zsh/.virtual_env_config.zsh
[[ -f /usr/share/doc/find-the-command/ftc.zsh ]] && source /usr/share/doc/find-the-command/ftc.zsh
2018-07-29 16:26:51 +02:00
[[ -f ~/.zsh/.mac_config ]] && source ~/.zsh/.mac_config
POWERLEVEL9K_INSTALLATION_PATH=$ANTIGEN_BUNDLES/bhilburn/powerlevel9k
# Load Antigen
source ~/.zsh/antigen/antigen.zsh
# Clear screen by ctrl+q
bindkey '^q' clear-screen
# Load various lib files
antigen use oh-my-zsh
#
# Antigen Theme
#
2018-07-29 16:26:51 +02:00
antigen theme bhilburn/powerlevel9k powerlevel9k
#
# Antigen Bundles
#
antigen bundle git
antigen bundle heroku
2019-02-28 13:36:24 +01:00
#antigen bundle command-not-found
antigen bundle go
# antigen bundle tmuxinator
antigen bundle zsh-users/zsh-syntax-highlighting
2018-07-29 16:26:51 +02:00
antigen bundle zsh-users/zsh-autosuggestions
# For SSH, starting ssh-agent is annoying
antigen bundle ssh-agent
# Python Plugins
antigen bundle pip
antigen bundle python
antigen bundle virtualenv
2018-07-29 16:26:51 +02:00
antigen bundle virtualenv
antigen apply
2018-07-29 16:26:51 +02:00
alias vim=nvim
export EDITOR='nvim'
2019-02-28 13:36:24 +01:00
export PATH="/usr/local/opt/gnu-getopt/bin:$PATH"
test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"