- disable quoting for "ls"
- expand short aliases (e.g. ls -h) to long ones (e.g. ls --human-readable)
This commit is contained in:
Martinez 2016-01-23 18:09:27 +01:00
parent bc3b4dd8e0
commit b273c0bd81

View file

@ -2,15 +2,15 @@
bindkey -e # editor jako emacs
bindkey ' ' magic-space # mezerník rozbaluje odkazy na historii
alias ls="ls -F --color --group-directories-first"
alias l="ls -hl"
alias ll="l -a"
alias grep="grep -a --color=auto"
alias ls="ls --classify --color --group-directories-first --quoting-style=literal"
alias l="ls --human-readable -l"
alias ll="l --almost-all"
alias grep="grep --text --color=auto"
alias pull_website="wget --no-parent --recursive --page-requisites --convert-links --html-extension --no-clobber"
alias ..="cd .."
alias pp=python2
alias ppp=python3
alias htop="htop -d 3"
alias htop="htop --delay=3"
alias O=xdg-open
alias gits="git status"
alias gita="git add"