Created
July 23, 2013 01:07
-
-
Save chris-x86-64/6059096 to your computer and use it in GitHub Desktop.
zshrc
This file contains 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
# -*- coding: utf-8 -*- | |
# Author: Keiya Chinen, keiyac | |
# lastupdate 2010/07/30 | |
# users generic .zshrc file for zsh(1) | |
## Environment variable configuration | |
# | |
# LANG | |
# | |
export LANG=en_US.UTF-8 | |
case ${UID} in | |
0) | |
LANG=C | |
;; | |
esac | |
## Default shell configuration | |
# | |
# set prompt | |
# | |
autoload colors | |
colors | |
case ${UID} in | |
0) | |
PROMPT='%{%}[%~]%(!.#.$)%{%} ' | |
RPROMPT="%{%}%n@%m%{%} %{%}%D{%Y/%m/%d %H:%M:%S}%{%}" | |
SPROMPT="%r is correct? [n,y,a,e]" | |
;; | |
*) | |
PROMPT='%{%}[%~]%(!.#.$)%{%} ' | |
RPROMPT="%{%}%n@%m%{%} %{%}%D{%H:%M:%S}%{%}" | |
SPROMPT="%r is correct? [n,y,a,e]" | |
;; | |
esac | |
# auto change directory | |
# | |
setopt auto_cd | |
# auto directory pushd that you can get dirs list by cd -[tab] | |
# | |
setopt auto_pushd | |
# command correct edition before each completion attempt | |
# | |
setopt correct | |
setopt correctall | |
# compacked complete list display | |
# | |
setopt list_packed | |
# no remove postfix slash of command line | |
# | |
setopt noautoremoveslash | |
# no beep sound when complete list displayed | |
# | |
setopt nolistbeep | |
## Keybind configuration | |
# | |
# emacs like keybind (e.x. Ctrl-a goes to head of a line and Ctrl-e goes | |
# to end of it) | |
# | |
bindkey -v | |
# historical backward/forward search with linehead string binded to ^P/^N | |
# | |
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 | |
bindkey "\\ep" history-beginning-search-backward-end | |
bindkey "\\en" history-beginning-search-forward-end | |
## Command history configuration | |
# | |
HISTFILE=~/.zsh_history | |
HISTSIZE=100000 | |
SAVEHIST=100000 | |
setopt hist_ignore_dups # ignore duplication command history list | |
setopt share_history # share command history data | |
## Completion configuration | |
# | |
fpath=(~/.zsh/functions/Completion ${fpath}) | |
autoload -U compinit | |
compinit -u | |
## Prediction configuration | |
# | |
#autoload predict-on | |
#predict-off | |
## Alias configuration | |
# | |
# expand aliases before completing | |
# | |
setopt complete_aliases # aliased ls needs if file/dir completions work | |
alias where="command -v" | |
alias j="jobs -l" | |
case "${OSTYPE}" in | |
freebsd*|darwin*) | |
alias ls="ls -G -w -F" | |
;; | |
linux*) | |
alias ls="ls --color=auto" | |
;; | |
esac | |
alias la="ls -la" | |
alias ll="ls -lh" | |
alias du="du -h" | |
alias df="df -h" | |
alias su="su -l" | |
alias cp="cp -i" | |
alias rm="rm -i" | |
alias mv="mv -i" | |
alias grep="grep --color=auto" | |
# for screen | |
alias screen="TERM=screen screen -U" | |
case "${OSTYPE}" in | |
darwin*) | |
alias updateports="sudo port selfupdate; sudo port outdated" | |
alias portupgrade="sudo port upgrade installed" | |
;; | |
freebsd*) | |
case ${UID} in | |
0) | |
updateports() | |
{ | |
if [ -f /usr/ports/.portsnap.INDEX ] | |
then | |
portsnap fetch update | |
else | |
portsnap fetch extract update | |
fi | |
(cd /usr/ports/; make index) | |
portversion -v -l \< | |
} | |
alias appsupgrade='pkgdb -F && BATCH=YES NO_CHECKSUM=YES portupgrade -a' | |
;; | |
esac | |
;; | |
esac | |
#export LSCOLORS=gxFxcxxxbxegedxexxacxe | |
export LSCOLORS=gxFxcxdxbxegedabagacad | |
export LS_COLORS='di=36:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30' | |
#export LSCOLORS=xxxxxxxxxxxxxxxxxxxxxx | |
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' | |
zstyle ':completion:*' list-colors 'di=;36;1' 'ln=;35;1' 'so=;32;1' 'ex=31;1' 'bd=46;34' 'cd=43;34' | |
zstyle ':completion:*:sudo:*' command-path /usr/local/sbin /usr/local/bin \ | |
/usr/sbin /usr/bin /sbin /bin /usr/X11R6/bin | |
export LESS='--tabs=4 --no-init --LONG-PROMPT --ignore-case' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment