dotfiles/.zshrc.d/options.zsh

20 lines
1.1 KiB
Bash

# vim: set filetype=sh nospell:
setopt extended_glob # Use extended globbing syntax (#,~,^).
setopt glob_dots # Don't hide dotfiles from glob patterns.
setopt NO_rm_star_silent # Ask for confirmation for `rm *' or `rm path/*'
setopt combining_chars # Combine 0-len chars with the base character (eg: accents).
setopt interactive_comments # Enable comments in interactive shell.
setopt rc_quotes # Allow 'Hitchhikers''s Guide' instead of 'Hitchhikers'\''s Guide'.
setopt NO_mail_warning # Don't print a warning message if a mail file has been accessed.
setopt NO_beep # Don't beep on error in line editor.
# Set Zsh options related to job control.
setopt auto_resume # Attempt to resume existing job before creating a new process.
setopt long_list_jobs # List jobs in the long format by default.
setopt notify # Report status of background jobs immediately.
setopt NO_bg_nice # Don't run all background jobs at a lower priority.
setopt NO_check_jobs # Don't report on jobs when shell exit.
setopt NO_hup # Don't kill jobs on shell exit.