blob: b086e1da0487bdd3be27116c3ad49f9e837a8ffb (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
if test -x =dircolors ; then
eval "`dircolors`"
export ZLS_COLORS=$LS_COLORS
fi
autoload -U is-at-least
setopt aliases
setopt all_export
setopt append_history
setopt auto_cd
setopt auto_list
setopt auto_menu
setopt auto_param_keys
setopt auto_param_slash
setopt auto_remove_slash
setopt auto_resume
setopt always_to_end
setopt bad_pattern
setopt no_bg_nice
setopt no_bsd_echo
setopt check_jobs
setopt correct
setopt no_correct_all
setopt no_emacs
setopt exec
setopt no_extended_history
setopt hash_cmds
setopt hash_dirs
setopt hash_list_all
setopt hist_find_no_dups
setopt hist_ignore_all_dups
setopt hist_ignore_space
setopt hist_no_functions
setopt hist_no_store
setopt hist_reduce_blanks
setopt hist_save_no_dups
setopt hist_verify
setopt share_history
setopt no_hup
setopt no_ignore_eof
setopt list_ambiguous
setopt list_packed
setopt mark_dirs
setopt notify
setopt no_rm_star_silent
setopt no_rm_star_wait
setopt vi
setopt zle
[ -w "$zsh_cache" ] && HISTFILE=$zsh_cache/history
HISTSIZE=10000
LISTMAX=1000
REPORTIME=2
SAVEHIST=10000
# vim: et ft=zsh :
|