fix arch stuff
This commit is contained in:
parent
7a0c67b05c
commit
6c681373cb
2 changed files with 13 additions and 8 deletions
|
@ -1,3 +1,4 @@
|
||||||
[dotfiles]
|
[dotfiles]
|
||||||
repository = ~/.dotfiles
|
repository = ~/.dotfiles
|
||||||
ignore = ['.git']
|
ignore = [
|
||||||
|
'.git']
|
||||||
|
|
14
zshrc
14
zshrc
|
@ -48,21 +48,25 @@ zplug load
|
||||||
#########
|
#########
|
||||||
|
|
||||||
# Local stuff, homebrew python, theos
|
# Local stuff, homebrew python, theos
|
||||||
export PATH="${HOME}/bin:${HOME}/bin/android-sdk/platform-tools:/usr/local/opt/theos/python/libexec/bin:${PATH}"
|
export PATH="${HOME}/bin:${HOME}/bin/android-sdk/platform-tools:${PATH}"
|
||||||
export EDITOR=nano
|
if [[ $OSTYPE == darwin* ]]; then
|
||||||
|
|
||||||
# Google Cloud tools
|
# Google Cloud tools
|
||||||
|
# On Arch and etcetera, we'd be installing these ourselves and putting it in global path.
|
||||||
|
# Not on a Mac, so...
|
||||||
source ${HOME}/bin/google-cloud-sdk/completion.zsh.inc
|
source ${HOME}/bin/google-cloud-sdk/completion.zsh.inc
|
||||||
source ${HOME}/bin/google-cloud-sdk/path.zsh.inc
|
source ${HOME}/bin/google-cloud-sdk/path.zsh.inc
|
||||||
|
fi
|
||||||
|
|
||||||
|
export EDITOR=nano
|
||||||
|
|
||||||
# Go
|
# Go
|
||||||
export GOPATH=${HOME}/go
|
export GOPATH=${HOME}/go
|
||||||
export PATH=${GOPATH}/bin:${PATH}
|
export PATH=${GOPATH}/bin:${PATH}
|
||||||
|
|
||||||
# theos
|
# theos
|
||||||
export THEOS=/usr/local/opt/theos
|
export THEOS=${HOME}/.theos
|
||||||
export PATH=${THEOS}/bin:$PATH
|
export PATH=${THEOS}/bin:$PATH
|
||||||
export THEOS_DEVICE_IP=192.168.1.167 THEOS_DEVICE_PORT=22
|
export THEOS_DEVICE_IP=192.168.1.173 THEOS_DEVICE_PORT=22
|
||||||
|
|
||||||
# devkitPro and the like
|
# devkitPro and the like
|
||||||
export DEVKITPRO=${HOME}/devkitPro
|
export DEVKITPRO=${HOME}/devkitPro
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue