1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-10 08:54:54 +00:00
dotfiles/.config/fish/config.fish

33 lines
847 B
Fish
Raw Normal View History

2018-11-15 01:01:37 +00:00
# PATHS #
if test (hostname) = aperture
set -Ux D /mnt/LocalDiskD
end
set -gx ANDROID_HOME $D/Installs/Android/sdk
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
set -gx ENV .profile
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 #
source /usr/share/autojump/autojump.fish
# LOAD XRESOURCES #
xrdb ~/.Xresources
# QUTEBROWSER QUICKMARKS #
for i in (cat ~/.config/qutebrowser/quickmarks)
function (echo $i| awk '{print $1;}') -V i
qb (echo $i| awk '{print $2;}')
end
end
2019-03-26 17:47:51 +00:00
# MULTIMC INSTANCES #
for i in (ls $D/Games/Minecraft/Game/instances/)
function (basename $i | tr '[:upper:]' '[:lower:]') -V i
minecraft -l (basename $i)
end
end