summaryrefslogtreecommitdiff
path: root/source/options.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'source/options.zsh')
-rw-r--r--source/options.zsh36
1 files changed, 36 insertions, 0 deletions
diff --git a/source/options.zsh b/source/options.zsh
new file mode 100644
index 0000000..0f6d0f6
--- /dev/null
+++ b/source/options.zsh
@@ -0,0 +1,36 @@
+# changing directories
+setopt autocd
+setopt noautopushd
+setopt pushdignoredups
+setopt pushdtohome
+
+# completion
+setopt alwaystoend
+
+# expansion and globbing
+
+# history
+setopt histexpiredupsfirst
+setopt histignoredups
+setopt histignorespace
+setopt histverify
+setopt incappendhistory
+
+# initialization
+setopt noallexport
+
+# i/o
+setopt noflowcontrol
+setopt interactivecomments
+
+# job control
+setopt longlistjobs
+
+# prompting
+setopt promptsubst
+# setopt transientrprompt ?
+
+# scripts and functions
+
+# shell emulation
+setopt bsdecho