-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.zshrc
More file actions
43 lines (35 loc) · 925 Bytes
/
.zshrc
File metadata and controls
43 lines (35 loc) · 925 Bytes
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
umask 077
bindkey -e
PROMPT='%F{blue}%1~%f %(!.#.❯) '
CASE_SENSITIVE='true'
DISABLE_MAGIC_FUNCTIONS='true'
alias chmod='chmod -v'
alias fgrep='grep -F --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn}'
if [ -x "$(command -v gls)" ]; then
alias ls='gls -bFGkhv --group-directories-first --color=always'
else
alias ls='ls -bFGkhv --color=always'
fi
alias ll='ls -l'
alias la='ll -A'
autoload -Uz compinit && compinit
typeset -aU path
setopt noautocd
setopt autopushd
setopt glob_complete
setopt ignoreeof
HISTFILE="${HOME}/.zsh_history"
HIST_STAMPS='yyyy-mm-dd'
HISTSIZE=10000000
SAVEHIST=10000000
setopt append_history
setopt extended_history
setopt hist_expire_dups_first
setopt hist_find_no_dups
setopt hist_ignore_dups
setopt hist_ignore_all_dups
setopt hist_reduce_blanks
setopt hist_save_no_dups
setopt inc_append_history
setopt share_history
[ -f "${HOME}/.zshrc.local" ] && source "${HOME}/.zshrc.local"