2018-11-15 01:01:37 +00:00
|
|
|
# PATHS #
|
2019-02-21 00:03:28 +00:00
|
|
|
if test (hostname) = aperture
|
|
|
|
set -Ux D /mnt/LocalDiskD
|
|
|
|
end
|
2019-01-20 22:57:50 +00:00
|
|
|
set -gx ANDROID_HOME $D/Installs/Android/sdk
|
2019-04-02 01:25:27 +00:00
|
|
|
set -gx fish_user_paths $D/Tools ~/.local/bin /usr/bin /usr/local/bin /bin /usr/sbin /usr/local/sbin /sbin $PLAN9/bin $ANDROID_HOME/platform-tools
|
2018-12-19 00:33:47 +00:00
|
|
|
set -gx ENV .profile
|
2019-01-15 23:56:57 +00:00
|
|
|
set -gx FFF_CD_FILE ~/.fff_d
|
2018-11-15 01:01:37 +00:00
|
|
|
|
|
|
|
# PROGRAM SETTINGS #
|
|
|
|
set -gx EDITOR nvim
|
|
|
|
set -gx PAGER "nvim -c 'set ft=man' -"
|
|
|
|
|
|
|
|
# AUTOJUMP #
|
2019-04-04 03:17:38 +00:00
|
|
|
alias j=z
|
2018-11-15 01:01:37 +00:00
|
|
|
|
|
|
|
# LOAD XRESOURCES #
|
|
|
|
xrdb ~/.Xresources
|
2019-03-02 16:57:43 +00:00
|
|
|
|
2019-04-03 23:00:16 +00:00
|
|
|
# MULTIMC INSTANCES #
|
2019-04-04 00:50:07 +00:00
|
|
|
for i in $D/Games/Minecraft/Game/instances/*
|
2019-04-04 03:17:38 +00:00
|
|
|
set i (basename $i)
|
|
|
|
alias $i="minecraft -l $i"
|
2019-04-03 23:00:16 +00:00
|
|
|
end
|