move all existing stuff to old/

This commit is contained in:
Mark Riedesel 2023-11-07 13:13:11 -06:00
parent c215878777
commit 35f5e8472b
49 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,31 @@
#/// My local scripts path
export PATH=$HOME/bin:$PATH
#/// npm
export PATH=$HOME/node_modules/.bin:$PATH
#/// Go
export GOPATH=$HOME/go
export PATH=$PATH:$HOME/go/bin
#/// Lua Rocks
export PATH=$PATH:$HOME/.luarocks/bin
#/// Ruby Gems
export PATH=$PATH:$HOME/.gem/ruby/2.4.0/bin
#/// ccache / colorgcc
# if (( $+commands[colorgcc] )); then
# export PATH="/usr/lib/colorgcc/bin/:$PATH"
# fi
if (( $+commands[ccache] )); then
export CCACHE_PATH="/usr/bin"
export PATH="/usr/lib/ccache/bin/:$PATH"
fi
export VIRSH_DEFAULT_CONNECT_URI="qemu:///system"
#/// Android SDK
export ANDROID_NDK_ROOT=/opt/android-ndk
export ANDROID_HOME=/opt/android-sdk