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
|
|
|
|
set -gx fish_user_paths ~/.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 #
|
|
|
|
source /usr/share/autojump/autojump.fish
|
|
|
|
|
|
|
|
# LOAD XRESOURCES #
|
|
|
|
xrdb ~/.Xresources
|
2019-03-02 16:57:43 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
# THE FUCK #
|
|
|
|
thefuck --alias | source
|