-
Notifications
You must be signed in to change notification settings - Fork 0
/
zshrc
83 lines (64 loc) · 1.96 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# export TERM=xterm-24bit
# Path to your oh-my-zsh configuration.
export ZSH_CUSTOM="$HOME/.zsh_custom"
export ZSH="$HOME/.oh-my-zsh"
export ZSH_TMUX_AUTOSTART=false
export ZSH_THEME="digitaltoad"
export EDITOR="vi"
export ARCHFLAGS='-arch x86_64'
plugins=(
tmux
vi-mode
brew
ssh-agent
projects
zsh-autosuggestions
zsh-syntax-highlighting
)
# Uncomment following line if you want to disable colors in ls
# export DISABLE_LS_COLORS="true"
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
export PATH="/usr/local/sbin:$PATH"
export PATH="/usr/local/bin:$PATH"
export PATH="$PATH:$HOME/bin"
export PATH="$PATH:$HOME/.cabal/bin"
export PATH="$PATH:$HOME/Library/Android/sdk/platform-tools"
export PATH="$PATH:$HOME/.composer/vendor/bin"
export PATH="$PATH:$HOME/.local/bin"
export PATH="$HOME/.nodenv/shims:$PATH"
export PATH="$HOME/.rbenv/shims:$PATH"
export PATH="$PATH:$HOME/.cargo/bin"
export PATH="$PATH:$HOME/.composer/bin"
export PATH=".env/bin:$PATH"
### Added by the Heroku Toolbelt
export PATH="/usr/local/heroku/bin:$PATH"
export PKG_CONFIG_PATH="/usr/local/opt/openssl/lib/pkgconfig"
export GOPATH="$HOME/.go"
# Maven
export MAVEN_OPTS="-Xmx512m"
# PSQL
export PGDATA="/usr/local/var/postgres"
export PGDATABASE="postgres"
# KIEX
[[ -s "$HOME/.kiex/scripts/kiex" ]] && source "$HOME/.kiex/scripts/kiex"
# HOMEBREW
export HOMEBREW_NO_AUTO_UPDATE=1
# NVIM
export NVIM_TUI_ENABLE_CURSOR_SHAPE=1
export NVIM_TUI_ENABLE_TRUE_COLOR=1
# FZF
export FZF_DEFAULT_OPTS='
--color fg:188,hl:103,fg+:222,bg+:235,hl+:104
--color info:183,prompt:110,spinner:107,pointer:167,marker:215
'
if command -v direnv >/dev/null 2>&1; then
eval "$(direnv hook zsh)"
fi
# if command -v docker-machine >/dev/null 2>&1; then
# eval "$(docker-machine env default)"
# fi
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export FZF_DEFAULT_COMMAND='ag --hidden --ignore .git --ignore node_modules --ignore dist -g ""'
# eval "$(starship init zsh)"
[[ $TMUX == "" ]] && tmux new-session -A -s sesh