Random things...

This commit is contained in:
John Doty 2016-01-28 20:43:58 -08:00
parent d4cd3cc942
commit bb39d27d8e
9 changed files with 2075 additions and 2 deletions

View file

@ -1,3 +1,16 @@
if status --is-login
set PATH $PATH ~/bin
end
set PATH $PATH ~/bin ~/devtools/buck/bin
end
export EDITOR=ec
export VISUAL=ec
export FBANDROID_DIR=/Users/doty/fbsource/fbandroid
alias quicklog_update=/Users/doty/fbsource/fbandroid/scripts/quicklog/quicklog_update.sh
alias qlu=quicklog_update
# added by setup_fb4a.sh
export ANDROID_SDK=/opt/android_sdk
export ANDROID_NDK_REPOSITORY=/opt/android_ndk
export ANDROID_HOME={ANDROID_SDK}
export PATH={PATH}:{ANDROID_SDK}/tools:{ANDROID_SDK}/platform-tools

View file

@ -0,0 +1,8 @@
function dnu --description "wraps the dnu bash script"
if test -e ~/.dnx/dnvm/dnvm.sh
set dnx ~/.dnx/dnvm/dnvm.sh
else if test -e /usr/local/bin/dnvm.sh
set dnx /usr/local/bin/dnvm.sh
end
bash -c ". $dnx && dnu $argv"
end

View file

@ -0,0 +1,8 @@
function dnvm --description "wraps the dnvm.sh bash script"
if test -e ~/.dnx/dnvm/dnvm.sh
set dnx ~/.dnx/dnvm/dnvm.sh
else if test -e /usr/local/bin/dnvm.sh
set dnx /usr/local/bin/dnvm.sh
end
bash -c ". $dnx && dnvm $argv"
end

View file

@ -0,0 +1,8 @@
function dnx --description "wraps the dnx bash script"
if test -e ~/.dnx/dnvm/dnvm.sh
set dnx ~/.dnx/dnvm/dnvm.sh
else if test -e /usr/local/bin/dnvm.sh
set dnx /usr/local/bin/dnvm.sh
end
bash -c ". $dnx && dnx $argv"
end