diff options
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 128 |
1 files changed, 128 insertions, 0 deletions
@@ -0,0 +1,128 @@ +zstyle ':completion:*' completer _complete _ignored +zstyle :compinstall filename '/home/pks/.zshrc' +autoload -Uz compinit promptinit +compinit +promptinit +HISTFILE=~/.zshistory +HISTSIZE=1000 +SAVEHIST=1000 +zstyle ':completion:*' menu select +setopt completealiases +compdef mosh=ssh +zstyle '*' hosts # do not use /etc/hosts +setopt multios + +ex () { + if [ -f $1 ] ; then + case $1 in + *.tar.bz2) tar xvjf $1 && cd $(basename "$1" .tar.bz2) ;; + *.tar.gz) tar xvzf $1 && cd $(basename "$1" .tar.gz) ;; + *.tar.xz) tar Jxvf $1 && cd $(basename "$1" .tar.xz) ;; + *.bz2) bunzip2 $1 && cd $(basename "$1" .bz2) ;; + *.rar) unrar x $1 && cd $(basename "$1" .rar) ;; + *.gz) gunzip $1 && cd $(basename "$1" .gz) ;; + *.tar) tar xvf $1 && cd $(basename "$1" .tar) ;; + *.tbz2) tar xvjf $1 && cd $(basename "$1" .tbz2) ;; + *.tgz) tar xvzf $1 && cd $(basename "$1" .tgz) ;; + *.zip) unzip $1 && cd $(basename "$1" .zip) ;; + *.Z) uncompress $1 && cd $(basename "$1" .Z) ;; + *.7z) 7zr x $1 && cd $(basename "$1" .7z) ;; + *) echo "Don't know how to extract '$1'..." ;; + esac + else + echo "'$1' is not a file!" + fi +} + +umask 0077 +export PATH=~/bin:~/src/scripts:~/lib/ruby/bin:/usr/sbin/:$PATH +export RUBYOPT=-Ku +export CCACHE_PATH=/usr/bin +export TEXMFHOME='~/.texmf' +export EDITOR='vim -p' +export LC_ALL=en_US.UTF-8 +export LANG=en_US.UTF-8 +export LANGUAGE=en_US.UTF-8 +export GEM_HOME=$HOME/lib/ruby/ +export TERM=rxvt-256color +export PYTHONPATH=$PYTHONPATH:~/lib/python/ + +case $TERM in + *rxvt*|xterm*) + precmd () {print -Pn "\e]0;%n@%m%~\a"} + preexec () {print -Pn "\e]0;%n@%m%~ -- $1\a"} + ;; + screen*) + precmd () {print -Pn "\e]0;%n@%m%~\a"} + preexec () {print -Pn "\e]0;%n@%m%~\a"} + ;; +esac + +autoload -U colors && colors +PROMPT="[%~]%{$fg[magenta]%}$B%%%b%{$reset_color%} " + +function youtube() { mplayer -xy 0.5 $(youtube-dl -g "$@") ;} + +alias ls='ls -h --color=auto' +alias l='ls' +alias la='ls -lA' +alias ll='ls -l' +alias lla='ls -A' +alias lsc='ls -1 | wc -l' +alias less='less -R' +alias lh='ls --color=always -lasth | less' +alias vi=$EDITOR +alias pdf='mupdf' +alias py='bpython' +alias grep='grep --color=auto' +alias equery='sudo equery -N' +alias feh='feh -F' +alias gitweb='git instaweb' +alias gitwebstop='git instaweb stop' +alias netcfg='sudo netcfg' +alias mergepdf='texexec --pdfarrange --noduplex --result merged.pdf ' +alias mergepdfgs=' gs -dNOPAUSE -sDEVICE=pdfwrite -sOUTPUTFILE=gsmerged.pdf -dBATCH' +alias updatedb='sudo updatedb' +alias qmv='qmv -evim -fdo' +alias dusage='du -hs *' +alias df='df -h' +alias diff='colordiff' +alias iwlist='sudo iwlist wlan0 scan' +alias fumount='fusermount -u' +alias more='less' +alias vpnc='sudo vpnc' +alias vgaoff='xrandr --output VGA1 --off' +alias vgaclone='xrandr --output VGA1 --mode 1024x768' +alias vgaext='xrandr --output VGA1 --mode 1024x768 --left-of LVDS1 --rotate right' +alias suspend='sudo suspend' +alias hibernate='suspend' +alias reboot='sudo shutdown -r now' +alias halt='sudo shutdown -h now' +alias lock='slock' +alias demoterm="urxvt -fn 'xft:courier:pixelsize=16' -fg #000000 -bg #ffffff" +alias fwup='sudo ifconfig firewire0 192.168.166.100 up' +alias gzip='pigz' +alias gunzip='pigz -d' +alias fastltx='pdflatex -interaction=batchmode --shell-escape -parse-first-line' +alias lp2p='/usr/bin/lp -o sides=two-sided-long-edge' +alias lp4p='/usr/bin/lp -o sides=two-sided-short-edge -o number-up=2' +alias lp8p='/usr/bin/lp -o sides=two-sided-short-edge -o number-up=4 -o landscape' +alias tmux="TERM=screen-256color tmux" +alias muxn='tmux new -s' +alias muxl='tmux list-sessions' +alias muxa='tmux attach -t' +alias biew='TERM=vt100 biew filename' +alias dmesg='dmesg -T' +alias always_on='xset dpms 0 0 0' +alias ruby="ruby20" +alias irb="irb20" +alias gem="gem20" +alias quotes='curl -s "http://download.finance.yahoo.com/d/quotes.csv?s=AAPL+AMD+GOOG&f=l1"' +alias irb='pry' +source ~/.zshrcp + +bindkey -v +bindkey '^R' history-incremental-search-backward +bindkey '^A' vi-beginning-of-line +bindkey '^E' vi-end-of-line + |