-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
44 lines (30 loc) · 736 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
autoload -Uz compinit
compinit
autoload -U edit-command-line
bindkey -v
bindkey '^R' history-incremental-search-backward
bindkey '^F' history-incremental-search-forward
zle -N edit-command-line
bindkey -M vicmd v edit-command-line
setopt histignorealldups sharehistory
source ~/.zsh/prompt.zsh
source ~/.zsh/aliases.zsh
source ~/.zsh/styles.zsh
source ~/.zsh/exports.zsh
source ~/.zsh/greeting.zsh
source ~/.zsh/ssh.zsh
if [ -f ~/.zsh/work.zsh ]; then
source ~/.zsh/work.zsh
fi
ZIPRC=$HOME/.ziprc
if [ -f $ZIPRC ]; then
source $ZIPRC
fi
if [ -z $STY ]; then
echo
screen -ls
fi
(~/.zsh/repocheck.zsh &) 2>/dev/null
PATH=~/src/github.com/fffinkel/gerber/bin:$PATH
cd ~
export PATH="/opt/homebrew/opt/mysql/bin:$PATH"