Mercurial > ec-dotfiles
comparison rc/zshrc @ 332:db66d53e10ea
Canonical name for configs.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Mon, 19 Mar 2012 12:52:12 +0700 |
parents | rc/zsh@a7484f2c9616 |
children | 77c1f9e624a3 |
comparison
equal
deleted
inserted
replaced
331:00777bea96fb | 332:db66d53e10ea |
---|---|
1 #!/usr/bin/env zsh | |
2 [ -f "${HOME}/.ecos_zsh.before" ] && . "${HOME}/.ecos_zsh.before" | |
3 case $TERM in | |
4 xterm*|screen*) | |
5 precmd () {print -Pn "\e]0;%n@%m: %~\a"} | |
6 ;; | |
7 esac | |
8 PS1='[%n@%m %~]%% ' | |
9 export PATH="${HOME}/.ecos_bin:${PATH}" | |
10 HISTFILE=~/.histfile | |
11 HISTSIZE=10000 | |
12 SAVEHIST=10000 | |
13 setopt appendhistory nomatch | |
14 unsetopt autocd beep extendedglob notify | |
15 bindkey -e | |
16 bindkey '^[[A' history-search-backward | |
17 bindkey '^[[B' history-search-forward | |
18 | |
19 autoload -Uz compinit | |
20 compinit | |
21 | |
22 export EDITOR=vi | |
23 export PAGER='less -Rins' | |
24 alias less='less -Rins' | |
25 alias ls='ls -F' | |
26 [ -f "${HOME}/.ecos_zsh.after" ] && . "${HOME}/.ecos_zsh.after" |