]> gitweb.michael.orlitzky.com - bash.d.git/blob - aliases.sh
aliases: use no-window emacs.
[bash.d.git] / aliases.sh
1 #
2 # aliases
3 #
4 alias df='df --human-readable'
5 alias du='du --human-readable --summarize --total *'
6
7 # We set EDITOR, VISUAL, and the "emacs" alias to the no-window
8 # version because it's so much faster than gtk emacs. In the rare
9 # cases (like within emacs's own multi-term environment) where
10 # a separate gtk window is required, /usr/bin/emacs can be used
11 # instead.
12 alias emacs='emacs --no-window-system'
13
14 alias ls='ls -l --color=auto --human-readable --time-style=long-iso'
15 alias youtube-dl-mp3='youtube-dl --extract-audio --audio-format=mp3'
16