move all existing stuff to old/
This commit is contained in:
parent
c215878777
commit
35f5e8472b
49 changed files with 0 additions and 0 deletions
31
old/_config/zsh/configs/default/paths.zsh
Normal file
31
old/_config/zsh/configs/default/paths.zsh
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue