Move prompt management into bash configuration

Also add better history management. I've been using GNU screen for a
while which messes up history for a lot of shells. Every shell will now
  append to and reread history after each command.
This commit is contained in:
2017-11-03 08:04:34 -04:00
parent fd9dcb7053
commit d0ea94c3f2
3 changed files with 32 additions and 25 deletions

View File

@@ -8,9 +8,9 @@ alias sudo="sudo "
#{- GNU COREUTILS -}#
# Sort directories first and colorize output
alias ls="ls -h --color=auto --group-directories-first"
alias la="ls -A"
alias ll="ls -l"
alias ls="ls -hF --color=auto --group-directories-first"
alias la="ls -AF"
alias ll="ls -lF"
# Ask before overwriting files
alias mv="mv -i"