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