Skip to content

Instantly share code, notes, and snippets.

@dmitry-saritasa
Created October 10, 2017 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmitry-saritasa/2fdf982cb6663d212a756af410e30006 to your computer and use it in GitHub Desktop.
Save dmitry-saritasa/2fdf982cb6663d212a756af410e30006 to your computer and use it in GitHub Desktop.
# The following lines were added by compinstall
zstyle :compinstall filename '/home/dmitry/.zshrc'
autoload -U zargs
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt appendhistory autocd extendedglob notify nomatch autopushd pushdignoredups promptsubst
# autocomplete
fpath=(~/Config/.zsh/completion $fpath)
autoload -Uz compinit
compinit
# Make prompt prettier
autoload -U promptinit
promptinit
# End of lines configured by zsh-newuser-install
# Additional configs
source ~/Config/.zsh/antigen.zsh
source ~/Config/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
source ~/Config/.zsh/tmuxinator.zsh
source ~/Config/.aliases
source ~/Config/.projects
source ~/.tigrc
source /usr/share/zsh/site-functions/aws_zsh_completer.sh
source ~/Config/.zsh/git-flow-completion.zsh
# Load the oh-my-zsh's library.
antigen use oh-my-zsh
# Bundles from the default repo (robbyrussell's oh-my-zsh).
antigen bundle git
antigen bundle heroku
antigen bundle pip
antigen bundle lein
antigen bundle command-not-found
antigen bundle autojump
antigen bundle brew
antigen bundle common-aliases
antigen bundle compleat
antigen bundle git-extras
antigen bundle git-flow
antigen bundle npm
antigen bundle web-search
antigen bundle z
antigen bundle andrewferrier/fzf-z
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle zsh-users/zsh-history-substring-search ./zsh-history-substring-search.zsh
antigen bundle uvaes/fzf-marks
antigen bundle gerges/oh-my-zsh-jira-plus
antigen bundle arialdomartini/oh-my-git
antigen bundle marzocchi/zsh-notify
antigen bundle johnhamelink/env-zsh
# antigen bundle clvv/fasd
# nice postgres cli for zsh
# https://github.com/caarlos0/zsh-pg
antigen bundle caarlos0/zsh-pg
# Load the theme.
# antigen theme jonathan
# antigen theme https://github.com/caiogondim/bullet-train-oh-my-zsh-theme bullet-train
# antigen theme https://gist.github.com/3750104.git agnoster
antigen theme awesomepanda
# antigen theme arialdomartini/oh-my-git-themes oppa-lana-style
# notification style
#
zstyle ':notify:*' error-icon "https://media3.giphy.com/media/10ECejNtM1GyRy/200_s.gif"
zstyle ':notify:*' error-title "wow such #fail"
zstyle ':notify:*' success-icon "https://s-media-cache-ak0.pinimg.com/564x/b5/5a/18/b55a1805f5650495a74202279036ecd2.jpg"
zstyle ':notify:*' success-title "very #success. wow"
zstyle ':notify:*' activate-terminal yes
# Emacs mode
bindkey -e
# Tell antigen that you're done.
antigen apply
source ~/Config/.aliases
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
[ -s "/home/dmitry/.scm_breeze/scm_breeze.sh" ] && source "/home/dmitry/.scm_breeze/scm_breeze.sh"
# The next line updates PATH for the Google Cloud SDK.
if [ -f /home/dmitry/Development/google-cloud-sdk/path.zsh.inc ]; then
source '/home/dmitry/Development/google-cloud-sdk/path.zsh.inc'
fi
# The next line enables shell command completion for gcloud.
if [ -f /home/dmitry/Development/google-cloud-sdk/completion.zsh.inc ]; then
source '/home/dmitry/Development/google-cloud-sdk/completion.zsh.inc'
fi
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
eval "$(fasd --init auto)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment