]> git.r.bdr.sh - rbdr/dotfiles/blob - zsh/modules/environment.zsh
4e95dac724a1aaa305b1a8b4f3e610f20a7feb02
[rbdr/dotfiles] / zsh / modules / environment.zsh
1 #
2 # Shell options and environment variables
3 #
4
5 #
6 # General
7 #
8
9 setopt BRACE_CCL # Allow brace character class list expansion.
10 setopt COMBINING_CHARS # Combine zero-length punctuation characters (accents)
11 # with the base character.
12 setopt RC_QUOTES # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'.
13 unsetopt MAIL_WARNING # Don't print a warning message if a mail file has been accessed.
14
15 #
16 # Jobs
17 #
18
19 setopt LONG_LIST_JOBS # List jobs in the long format by default.
20 setopt AUTO_RESUME # Attempt to resume existing job before creating a new process.
21 setopt NOTIFY # Report status of background jobs immediately.
22 unsetopt BG_NICE # Don't run all background jobs at a lower priority.
23 unsetopt HUP # Don't kill jobs on shell exit.
24 unsetopt CHECK_JOBS # Don't report on jobs when shell exit.