Skip to content

Instantly share code, notes, and snippets.

@tamakiii
Last active August 29, 2015 14:16
Show Gist options
  • Save tamakiii/3fc1f120f1a3eb5f8cb8 to your computer and use it in GitHub Desktop.
Save tamakiii/3fc1f120f1a3eb5f8cb8 to your computer and use it in GitHub Desktop.
# @see https://github.com/zsh-users/antigen
source ~/.home/vendor/antigen/antigen.zsh
antigen use oh-my-zsh
antigen bundle git
antigen bundle pip
antigen bundle command-not-found
antigen bundle zsh-users/zsh-syntax-highlighting
antigen bundle chrissicool/zsh-256color
antigen bundle sindresorhus/pure
antigen bundle ChrisJohnsen/tmux-MacOSX-pasteboard.git
antigen apply
# pure
PURE_GIT_PULL=0
# zsh
umask 002
bindkey -v
bindkey -e
HISTSIZE=1000000
SAVEHIST=1000000
# export
export LANG=ja_JP.UTF-8
export LANGUAGE=ja_JP:ja
export LC_ALL=ja_JP.utf8
export LESSCHARSET=utf-8
# setopt
setopt auto_menu auto_cd correct auto_name_dirs auto_remove_slash
setopt pushd_ignore_dups rm_star_silent sun_keyboard_hack
setopt cdable_vars sh_word_split auto_param_keys
setopt auto_pushd
setopt list_packed
setopt nolistbeep
setopt complete_aliases
setopt share_history # share command history data
setopt hist_ignore_all_dups hist_reduce_blanks hist_no_store print_eight_bit
setopt prompt_subst
stty stop undef
# alias
alias g='git'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment