1
0
mirror of https://github.com/Foltik/dotfiles synced 2024-11-24 12:26:05 -05:00
dotfiles/lain/.config/fish/config.fish

29 lines
556 B
Fish
Raw Normal View History

2018-11-30 21:28:10 -05:00
### Environment Variables ###
2018-11-30 22:00:45 -05:00
set -U fish_greeting
2018-11-30 21:28:10 -05:00
set -U fish_user_paths ~/.local/bin
2018-12-08 16:23:30 -05:00
2018-11-30 21:28:10 -05:00
# Use all cores for make by default
set -gx MAKEFLAGS -j(nproc)
2018-12-08 16:23:30 -05:00
2018-11-30 21:28:10 -05:00
# TTY for gpg pinentry
set -gx GPG_TTY (tty)
gpg-connect-agent updatestartuptty /bye >/dev/null
2018-12-08 16:23:30 -05:00
2018-12-01 14:35:58 -05:00
# Load wal colors if installed
if test -d ~/.cache/wal
cat ~/.cache/wal/sequences &
end
2018-12-08 16:23:30 -05:00
2018-12-01 14:35:58 -05:00
# Load autojump if installed
begin
set -l AUTOJUMP_PATH /usr/share/autojump/autojump.fish
if test -e $AUTOJUMP_PATH
source $AUTOJUMP_PATH
end
end
2018-12-08 16:23:30 -05:00
### Aliases ###
function ls
exa $argv
end