shell 424 B

12345678910111213141516171819
  1. #!/bin/bash
  2. # General settings
  3. export EDITOR=vim
  4. export CLICOLOR=1
  5. # Prefer the Queen's English and use UTF-8.
  6. export LC_ALL='en_GB.UTF-8';
  7. export LANG='en_GB';
  8. # don't put duplicate lines in the history
  9. export HISTCONTROL=ignoredups
  10. # let the history ignore the following commands
  11. export HISTIGNORE="ls:ll:la:pwd:clear:h:j"
  12. # append to the history file rather than overwriting
  13. shopt -s histappend
  14. shopt -s nocaseglob;