diff options
author | Florian Pritz <bluewind@xinu.at> | 2011-10-30 10:38:38 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2011-10-30 10:38:38 +0100 |
commit | 53c301ac77ef3c2509d8c389abb8ec6e6cab2921 (patch) | |
tree | 1ea4d9769c01127f9552fceead67f74547166d94 | |
parent | d88f39825df6fc75fe4daee62e903a5b4e65ed42 (diff) | |
download | dotfiles-53c301ac77ef3c2509d8c389abb8ec6e6cab2921.tar.gz dotfiles-53c301ac77ef3c2509d8c389abb8ec6e6cab2921.tar.xz |
add new dircolors; change tail alias
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .dircolors | 10 | ||||
-rw-r--r-- | .zshrc | 4 |
2 files changed, 12 insertions, 2 deletions
@@ -200,3 +200,13 @@ EXEC 01;32 .cpp 03;33 .h 00;33 .a 01;35 + +# documents +.pdf 01;33 +.doc 01;33 +.odt 01;33 +.ods 01;33 +.xls 01;33 +.pptx 01;33 +.ppt 01;33 +.odp 01;33 @@ -721,10 +721,10 @@ alias wgetc="wget --content-disposition" # global aliases work EVERYWHERE # e.g. dmesg tt -# show last 20 lines of dmesg +# show last 50 lines of dmesg alias -g gg='| grep --color' alias -g eg='| egrep --color' -alias -g tt='| tail -n 20' +alias -g tt='| tail -n 50' # I always hit y instead of | ... alias -g vv='|' |