From b273c0bd81f0cf4e568b30b4c43fe447105affe3 Mon Sep 17 00:00:00 2001 From: Martinez Date: Sat, 23 Jan 2016 18:09:27 +0100 Subject: [PATCH] zshrc - disable quoting for "ls" - expand short aliases (e.g. ls -h) to long ones (e.g. ls --human-readable) --- dotfiles/system/etc/zsh/zshrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dotfiles/system/etc/zsh/zshrc b/dotfiles/system/etc/zsh/zshrc index 08cde9f..33be129 100644 --- a/dotfiles/system/etc/zsh/zshrc +++ b/dotfiles/system/etc/zsh/zshrc @@ -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"