blob: 0f6d0f635774ab25b3630f17b4c03378bafe416f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
|