-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzshrc
More file actions
46 lines (34 loc) · 929 Bytes
/
zshrc
File metadata and controls
46 lines (34 loc) · 929 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
44
45
46
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
export PATH="/opt/homebrew/opt/mysql/bin:$PATH"
eval "$(direnv hook zsh)"
eval "$(devbox global shellenv)"
export PATH="/opt/homebrew/opt/postgresql@15/bin:$PATH"
export PATH="/opt/homebrew/opt/libpq/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"