#
# Set basic options
#
# Copyright © 1994–2017 martin f. krafft <madduck@madduck.net>
# Released under the terms of the Artistic Licence 2.0
#
# Source repository: http://git.madduck.net/v/etc/zsh.git
#

# Warn on accidental creation of global variables
setopt warn_create_global

# Extended globbing. Why would you not want this?
setopt extended_glob

# If a pattern for filename generation has no matches, leave it unchanged in
# the argument list.
setopt no_nomatch

# Prevent redirection from trunacting existing files.
setopt no_clobber

# Try to correct the spelling of commands
setopt correct

# use 0xXX and 0XX output instead of 16#XX/8#XX
setopt c_bases

# disable backslashed escape sequences unless -e is given to echo·
setopt bsd_echo

# handy script to query options
autoload -U allopt

# vim:ft=zsh