Skip to content

Instantly share code, notes, and snippets.

@tanaka51
Created June 9, 2015 07:35
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 tanaka51/2ab9de264475d0149917 to your computer and use it in GitHub Desktop.
Save tanaka51/2ab9de264475d0149917 to your computer and use it in GitHub Desktop.
export LANG=ja_JP.UTF-8
export EDITOR=vim
export TERM='screen-256color'
HISTFILE=$HOME/.zsh-history
HISTSIZE=100000
SAVEHIST=100000
bindkey -e
autoload -U compinit; compinit
autoload -Uz add-zsh-hook
autoload colors; colors
# prompt vcs
setopt prompt_subst
autoload -Uz vcs_info
zstyle ':vcs_info:git:*' check-for-changes true
zstyle ':vcs_info:git:*' stagedstr '%F{yellow}!'
zstyle ':vcs_info:git:*' unstagedstr '%F{red}+'
zstyle ':vcs_info:*' formats '%F{green}%c%u[%b]%f'
zstyle ':vcs_info:*' actionformats '[%b|%a]'
function _precmd_vcs_info () { LANG=en_US.UTF-8 vcs_info }
add-zsh-hook precmd _precmd_vcs_info
PROMPT='%F{cyan}[%~]%f ${vcs_info_msg_0_}
%F{green}%n%f$ '
setopt auto_pushd
setopt hist_ignore_dups
setopt nobeep
setopt pushd_ignore_dups
setopt share_history
autoload history-search-end
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end
bindkey "^P" history-beginning-search-backward-end
bindkey "^N" history-beginning-search-forward-end
# expand dir name after =
setopt magic_equal_subst
# specify delimiter for word
autoload -Uz select-word-style
select-word-style default
zstyle ':zle:*' word-chars " /=;@:{},|_-"
zstyle ':zle:*' word-style unspecified
# directory: cyan
# symblink: magenta
# exe: red
export LSCOLORS=gxfxxxxxbxxxxxxxxxgxgx
export LS_COLORS='di=01;36:ln=01;35:ex=01;31'
zstyle ':completion:*' list-colors 'di=36' 'ln=35' 'ex=31'
alias be='bundle exec'
alias g='git'
alias la='ls -a'
alias ll='ls -l'
alias lla='ls -la'
alias ls='ls -F -G'
alias r='rails'
alias reload='source $HOME/.zshrc'
alias rm='rm -i'
alias sl='ls'
alias z='zeus'
# tmux ¾å¤Î vim ¤¬ÂÀ»ú¤Ë¤Ê¤Ã¤Æ¤·¤Þ¤¦ÌäÂê¤ò²óÈò
# http://moqada.hatenablog.com/entry/2013/10/18/02033
alias tmux='TERM=screen-256color tmux'
compdef g=git
export GOPATH=$HOME
export PATH="$GOPATH/bin:$PATH"
# rbenv
export PATH="$HOME/.rbenv/bin:$PATH"
export PATH="$HOME/.rbenv/shims:$PATH"
eval "$(rbenv init -)"
export PATH="./bin:./mybin:/usr/local/bin:$PATH"
# for ruby on gentoo
unset RUBYOPT
# Add environment variable COCOS_CONSOLE_ROOT for cocos2d-x
export COCOS_CONSOLE_ROOT=/Users/tanaka51/app/cocos2d-x-3.2/tools/cocos2d-console/bin
export PATH=$COCOS_CONSOLE_ROOT:$PATH
# Add environment variable NDK_ROOT for cocos2d-x
export NDK_ROOT=/Users/tanaka51/app/android-ndk-r9d
export PATH=$NDK_ROOT:$PATH
# Add environment variable ANDROID_SDK_ROOT for cocos2d-x
export ANDROID_SDK_ROOT=/Applications/Android\ Studio.app/sdk
export PATH=$ANDROID_SDK_ROOT:$PATH
export PATH=$ANDROID_SDK_ROOT/tools:$ANDROID_SDK_ROOT/platform-tools:$PATH
# http://blog.kentarok.org/entry/2014/06/03/135300
function peco-src () {
local selected_dir=$(ghq list --full-path | peco --query "$LBUFFER")
if [ -n "$selected_dir" ]; then
BUFFER="cd ${selected_dir}"
zle accept-line
fi
zle clear-screen
}
zle -N peco-src
bindkey '^[s' peco-src
function tmux-attach-peco () {
local selected_session=$(tmux ls | peco | awk '{print $1}' | sed -e 's/.$//')
if [ -n "$selected_session" ]; then
BUFFER="tmux a -t ${selected_session}"
zle accept-line
fi
zle clear-screen
}
zle -N tmux-attach-peco
bindkey '^[t' tmux-attach-peco
# OPAM configuration
. $HOME/.opam/opam-init/init.zsh > /dev/null 2> /dev/null || true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment