Last active
August 29, 2015 14:25
-
-
Save tsaito20/762e912c74bca0b85394 to your computer and use it in GitHub Desktop.
.zshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setopt ignoreeof auto_cd noclobber prompt_subst correctall globdots | |
setopt histignoredups histignorespace nobeep extendedglob | |
setopt auto_pushd pushd_ignore_dups | |
#PATH=~/bin:~/usr/bin:~/usr/sbin | |
PATH=/usr/tools/bin:$PATH | |
PATH=$PATH:/usr/pkg/bin:/usr/pkg/sbin:/usr/local/bin:/usr/local/sbin | |
PATH=$PATH:~/usr/src/mruby/bin | |
PROMPT='%{%}%n@%m$'"%{%} " | |
RPROMPT='%{%}[%~]%{%}' | |
TMOUT=0 | |
#SAVEHIST=500 | |
export CVSEDITOR=emacs | |
export EDITOR=emacs | |
export PAGER=lv | |
export TERM=xterm screen | |
export LANG=ja_JP.UTF-8 | |
alias l="ls -F" | |
alias ll="ls -al" | |
alias la="ls -aF" | |
alias .="pwd" | |
alias pu="pushd" | |
alias pd="popd" | |
alias cvs"nocorrect noglob cvs" | |
alias -g L='| lv' | |
alias -g G='| grep' | |
alias gd='dirs -v; echo -n "select number: "; read newdir; cd +"$newdir"' | |
alias l4="less -x4" | |
alias mule="emacs" | |
alias em="emacs" | |
alias vi="vim" | |
tcsh-backward-delete-word(){ | |
local WORDCHARS="${WORDCHARS:s#/#}" | |
zle backward-delete-word | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment