-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
47 lines (37 loc) · 1013 Bytes
/
.zshrc
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
# Oh my ZSH config
export ZSH="$HOME/.oh-my-zsh"
plugins=(git z fzf rust python minikube)
ZSH_THEME="robbyrussell"
source $ZSH/oh-my-zsh.sh
# Aliases
source ~/.aliases
# Add sbin to `$PATH`
export PATH="/usr/local/sbin:$PATH";
# Standard UTF8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
# Spelling - hunspell
export DICTIONARY=en_US
bindkey -e
if [ -z "$HISTFILE" ]; then
HISTFILE=$HOME/.zsh_history
fi
HISTSIZE=100000
SAVEHIST=100000
# Show history
case $HIST_STAMPS in
"mm/dd/yyyy") alias history='fc -fl 1' ;;
"dd.mm.yyyy") alias history='fc -El 1' ;;
"yyyy-mm-dd") alias history='fc -il 1' ;;
*) alias history='fc -l 1' ;;
esac
setopt append_history
setopt extended_history
setopt hist_expire_dups_first
setopt hist_ignore_dups # ignore duplication command history list
setopt hist_ignore_space
setopt hist_verify
setopt inc_append_history
setopt share_history # share command history data
setopt hist_ignore_all_dups
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh