Updates
[~bandali/configs] / zsh / .zshrc
1 # Bash-like navigation
2 #export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
3 export WORDCHARS='*?-[]~=&;!#$%^(){}<>'
4
5 fpath+=~/.zfunc
6
7 disable -r time # disable shell reserved word
8 alias time='time -p' # -p for POSIX output
9
10 # rehash if last command was pacaur or pacman
11 # (so that zsh picks up changes in $PATH immediately)
12 TRAPUSR1() { rehash}; precmd() { [[ $history[$[ HISTCMD -1 ]] == *(pacaur|pacman)* ]] && killall -USR1 zsh }
13
14
15
16 #
17 # User configuration sourced by interactive shells
18 #
19
20 # Source zim
21 if [[ -s ${ZDOTDIR:-${HOME}}/.zim/init.zsh ]]; then
22 source ${ZDOTDIR:-${HOME}}/.zim/init.zsh
23 fi
24
25
26 ZSH_HIGHLIGHT_PATTERNS+=('rm -rf *' 'fg=white,bold,bg=red')
27 #ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=red,bold'
28
29 source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
30 source ~/.zsh/zsh-autopair/autopair.zsh
31
32 # aliases
33 alias mpv="mpv --ytdl-format mp4"
34 alias mv="mv -iv"
35 alias cp="cp -iv"
36 alias scl=systemctl
37 alias jcl=journalctl
38 alias m="mbsync -Va; getmail; notmuch new"
39 alias best="youtube-dl -f best"