forked from MikeMcQuaid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc.sh
executable file
·36 lines (25 loc) · 846 Bytes
/
zshrc.sh
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
# check if this is a login shell
[ "$0" = "-zsh" ] && export LOGIN_ZSH="1"
# run zprofile if this is not a login shell
[ -n "$LOGIN_ZSH" ] && source ~/.zprofile
# load shared shell configuration
source ~/.shrc
# History file
export HISTFILE=~/.zsh_history
# Don't show duplicate history entires
setopt hist_find_no_dups
# Remove unnecessary blanks from history
setopt hist_reduce_blanks
# Share history between instances
setopt share_history
# Don't hang up background jobs
setopt no_hup
# use emacs bindings even with vim as EDITOR
bindkey -e
# fix backspace on Debian
[ $LINUX ] && bindkey "^?" backward-delete-char
# fix delete key on macOS
[ $MACOS ] && bindkey "\e[3~" delete-char
# alternate mappings for Ctrl-U/V to search the history
bindkey "^u" history-beginning-search-backward
bindkey "^v" history-beginning-search-forward