-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
41 lines (29 loc) · 960 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
alias pa="php artisan"
alias wip="git add . && git commit -a -m 'wip'"
#NVM
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
#GEM
export PATH=$HOME/.gem/bin:$PATH
#HOMEBREW
export PATH="/opt/homebrew/bin:$PATH"
#VALET
export PATH="$PATH:$HOME/.composer/vendor/bin"
#FLUTTER
export PATH=/Users/joaovdiasb/Documents/flutter/bin:$PATH
#PGSQL
export PATH="/opt/homebrew/opt/postgresql@16/bin:$PATH"
#PUPPETEER
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
export PUPPETEER_EXECUTABLE_PATH="/opt/homebrew/bin/chromium"
#ZSH
export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="agnoster"
ZSH_TMUX_AUTOSTART=true
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
plugins=(
tmux
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh