Skip to content

Commit

Permalink
Update some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
booch committed Mar 14, 2013
1 parent 162bb01 commit a45c902
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions bashrc
Expand Up @@ -55,6 +55,9 @@ bind "set show-all-if-ambiguous On" # Show ambiguous completions without h
# Make sure we're using Emacs-style command-line editing, not vi-style. # Make sure we're using Emacs-style command-line editing, not vi-style.
set -o emacs set -o emacs


# Report status of terminated background jobs immediately, instead of waiting for next prompt.
set -o notify

# Check the window size after each command and, if necessary, update the values of LINES and COLUMNS. # Check the window size after each command and, if necessary, update the values of LINES and COLUMNS.
shopt -s checkwinsize shopt -s checkwinsize


Expand Down Expand Up @@ -99,12 +102,16 @@ elif type -P vim >dev/null; then
fi fi




ulimit -S -c 0 # Don't want any coredumps # Don't produce core dumps.
set -o notify # ??? ulimit -S -c 0


# Don't bother telling us if we have unread or read emails.
shopt -u mailwarn shopt -u mailwarn
unset MAILCHECK # I don't want my shell to warn me of incoming mail unset MAILCHECK




# Use less (instead of more) anywhere paging is required.
export PAGER=less export PAGER=less




Expand Down

0 comments on commit a45c902

Please sign in to comment.