[fish] fixed some bad style in 10-aliases

This commit is contained in:
Marcel Kapfer 2020-03-12 07:38:54 +01:00
parent f840fece30
commit ca02fbc714
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 13 additions and 13 deletions

View File

@ -19,19 +19,19 @@
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
if status --is-interactive
alias grep='grep --color=auto'
alias df='df -h'
alias du='du -c -h'
alias mkdir='mkdir -p -v'
alias ln='ln -i'
alias chown='chown --preserve-root'
alias chmod='chmod --preserve-root'
alias chgrp='chgrp --preserve-root'
alias ps='ps aux k%cpu'
alias q=' exit'
alias Q=' exit'
alias x=' exit'
alias o='xdg-open'
alias grep="grep --color=auto"
alias df="df -h"
alias du="du -c -h"
alias mkdir="mkdir -p -v"
alias ln="ln -i"
alias chown="chown --preserve-root"
alias chmod="chmod --preserve-root"
alias chgrp="chgrp --preserve-root"
alias ps="ps aux k%cpu"
alias q="exit"
alias Q="exit"
alias x="exit"
alias o="xdg-open"
alias vim="nvim"
alias e="es"
end