summaryrefslogtreecommitdiffstats
path: root/.zsh/rc/60aliases
diff options
context:
space:
mode:
Diffstat (limited to '.zsh/rc/60aliases')
-rw-r--r--.zsh/rc/60aliases108
1 files changed, 0 insertions, 108 deletions
diff --git a/.zsh/rc/60aliases b/.zsh/rc/60aliases
deleted file mode 100644
index 47a74bd..0000000
--- a/.zsh/rc/60aliases
+++ /dev/null
@@ -1,108 +0,0 @@
-#--------------------
-# Aliases
-#--------------------
-# better ask before we loose data
-alias rm='rm -Iv'
-alias cp='cp -iv'
-alias mv='mv -iv'
-
-# I don't like bytes
-alias dum='du -kh --max-depth=2'
-alias du='du -kh'
-alias dus='du -skh'
-#alias df='df -kTh'
-alias df='pydf'
-
-# function to make ls look nice is below
-alias ll='ls -l'
-alias la='ls -a'
-alias lla='ls -la'
-alias lld='ls -ld'
-
-alias newpkgb=' cp $HOME/misc/aur/PKGBUILD.proto PKGBUILD'
-
-# well I got used to that name ;)
-alias aurball='makepkg --source -f'
-alias pkgbuild='makepkg -fc && aurball'
-alias pushpkg='cp *.pkg.tar.gz *.src.tar.gz /mnt/mistral/srv/drop'
-
-alias sudo="sudo " #Sudo wont recognize aliases without this
-alias s='sudo'
-alias x='x -v'
-alias xx='x -Rv'
-alias u='upload.sh'
-alias mtr='mtr -t'
-alias wcl='wc -l'
-alias mdstat='cat /proc/mdstat'
-alias keymap='setxkbmap de -variant nodeadkeys'
-alias hexdump='hexdump -C'
-
-alias pager='${PAGER}'
-alias more='${PAGER}'
-alias less='${PAGER}'
-alias c='${PAGER}'
-alias v='vim'
-alias gv='gvim'
-alias sc='sudo ${PAGER}'
-alias sv='sudo vim'
-alias sgv='sudo gvim'
-
-alias g='git'
-alias gitk='giggle'
-# python is too long to type...
-alias q='python'
-
-alias ncmpc='ncmpc -c'
-alias youtube='youtube-dl -b '
-alias rscp='rsync --partial --progress --rsh=ssh'
-
-alias mkdir='nocorrect mkdir'
-alias wget='nocorrect noglob wget'
-
-# updating commands can be long...
-alias yup='yaourt -Syu --aur'
-alias yu='yaourt -Syu'
-
-# can't they make it use sudo on it's own like yaourt?
-alias p='sudo powerpill'
-alias pa='sudo powerpill -Syu'
-alias py='sudo powerpill -S'
-alias pacman='sudo pacman-color'
-
-alias su='su -'
-
-alias y='yaourt'
-alias ys='yaourt -S'
-alias ysb='yaourt -Sb'
-alias ysi='yaourt -Si'
-alias yr='yaourt -Rs'
-alias yrc='yaourt -Rcs'
-alias yrn='yaourt -Rns'
-alias yqo='yaourt -Qo'
-
-# too long to remember
-alias asciidoc_full='asciidoc -a icons -a toc'
-
-# other random aliases
-alias ☠='pkill -9'
-alias nocomment='egrep -v "^\s*(#|$)"'
-
-# global aliases work EVERYWHERE
-# e.g. dmesg tt
-# show last 20 lines of dmesg
-alias -g gg='| grep --color'
-alias -g eg='| egrep --color'
-alias -g tt='| tail -n 20'
-# I always hit y instead of | ...
-alias -g vv='|'
-
-# who doesn't need pastebins?
-alias -g sp="2>&1 | curl -F 'sprunge=<-' http://sprunge.us"
-alias -g pp="2>&1 | wgetpaste -X "
-
-# e.g. "blub.txt" opens the file instead of showing command not found
-alias -s txt=mousepad
-alias -s jpg=gpicview
-alias -s png=gpicview
-
-# vim: set ft=zsh: