Merge commit 'd3b9544eadfbe3c45039f71275c582ae306c0640' as 'zsh'

This commit is contained in:
murgi
2017-04-12 10:07:44 +02:00
9 changed files with 83 additions and 0 deletions

41
zsh/.zshrc Normal file
View File

@@ -0,0 +1,41 @@
[[ -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
# 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
#
antigen theme agnoster
#
# Antigen Bundles
#
antigen bundle git
antigen bundle heroku
antigen bundle command-not-found
antigen bundle go
# antigen bundle tmuxinator
antigen bundle zsh-users/zsh-syntax-highlighting
# For SSH, starting ssh-agent is annoying
antigen bundle ssh-agent
# Python Plugins
antigen bundle pip
antigen bundle python
antigen bundle virtualenv
antigen apply
export EDITOR='vim'