1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 00:49:15 +00:00
dotfiles/.config/fish/config.fish

29 lines
816 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
2018-11-15 01:01:37 +00:00
# FISHER #
set -g fisher_path ~/.config/fish/fisher
set fish_function_path $fish_function_path[1] $fisher_path/functions $fish_function_path[2..-1]
set fish_complete_path $fish_complete_path[1] $fisher_path/completions $fish_complete_path[2..-1]
2019-04-04 21:57:47 +00:00
for i in $fisher_path/conf.d/*
builtin source $i
end
2018-11-15 01:01:37 +00:00
# PROGRAM SETTINGS #
set -gx EDITOR nvim
set -gx PAGER "nvim -c 'set ft=man' -"
2019-04-08 01:18:44 +00:00
set -Ux Z_CMD "j"
2018-11-15 01:01:37 +00:00
# LOAD XRESOURCES #
xrdb ~/.Xresources
# MULTIMC INSTANCES #
2019-04-04 21:57:47 +00:00
for i in (ls $D/Games/Minecraft/Game/instances)
alias $i "minecraft -l $i"
end