diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-12-23 00:43:44 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-12-23 00:43:44 +0100 |
| commit | a9ff0fa6524bd96d0860ef79ae0c15ba6c715d56 (patch) | |
| tree | a969e44bb14c01b4f2fa7bf3143cc5c1728b2ae4 /zsh | |
| parent | 4f36c99380b27826970be983c0ce7c54f95b7b8b (diff) | |
Add simplified modules
Diffstat (limited to 'zsh')
| -rw-r--r-- | zsh/modules/environment.zsh | 24 | ||||
| -rw-r--r-- | zsh/modules/terminal.zsh | 0 |
2 files changed, 24 insertions, 0 deletions
diff --git a/zsh/modules/environment.zsh b/zsh/modules/environment.zsh new file mode 100644 index 0000000..4e95dac --- /dev/null +++ b/zsh/modules/environment.zsh @@ -0,0 +1,24 @@ +# +# Shell options and environment variables +# + +# +# General +# + +setopt BRACE_CCL # Allow brace character class list expansion. +setopt COMBINING_CHARS # Combine zero-length punctuation characters (accents) + # with the base character. +setopt RC_QUOTES # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'. +unsetopt MAIL_WARNING # Don't print a warning message if a mail file has been accessed. + +# +# Jobs +# + +setopt LONG_LIST_JOBS # List jobs in the long format by default. +setopt AUTO_RESUME # Attempt to resume existing job before creating a new process. +setopt NOTIFY # Report status of background jobs immediately. +unsetopt BG_NICE # Don't run all background jobs at a lower priority. +unsetopt HUP # Don't kill jobs on shell exit. +unsetopt CHECK_JOBS # Don't report on jobs when shell exit. diff --git a/zsh/modules/terminal.zsh b/zsh/modules/terminal.zsh new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/zsh/modules/terminal.zsh |