zshrc
- disable quoting for "ls" - expand short aliases (e.g. ls -h) to long ones (e.g. ls --human-readable)
This commit is contained in:
parent
bc3b4dd8e0
commit
b273c0bd81
1 changed files with 5 additions and 5 deletions
|
@ -2,15 +2,15 @@
|
||||||
bindkey -e # editor jako emacs
|
bindkey -e # editor jako emacs
|
||||||
bindkey ' ' magic-space # mezerník rozbaluje odkazy na historii
|
bindkey ' ' magic-space # mezerník rozbaluje odkazy na historii
|
||||||
|
|
||||||
alias ls="ls -F --color --group-directories-first"
|
alias ls="ls --classify --color --group-directories-first --quoting-style=literal"
|
||||||
alias l="ls -hl"
|
alias l="ls --human-readable -l"
|
||||||
alias ll="l -a"
|
alias ll="l --almost-all"
|
||||||
alias grep="grep -a --color=auto"
|
alias grep="grep --text --color=auto"
|
||||||
alias pull_website="wget --no-parent --recursive --page-requisites --convert-links --html-extension --no-clobber"
|
alias pull_website="wget --no-parent --recursive --page-requisites --convert-links --html-extension --no-clobber"
|
||||||
alias ..="cd .."
|
alias ..="cd .."
|
||||||
alias pp=python2
|
alias pp=python2
|
||||||
alias ppp=python3
|
alias ppp=python3
|
||||||
alias htop="htop -d 3"
|
alias htop="htop --delay=3"
|
||||||
alias O=xdg-open
|
alias O=xdg-open
|
||||||
alias gits="git status"
|
alias gits="git status"
|
||||||
alias gita="git add"
|
alias gita="git add"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue