1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 21:45:10 +01:00

fisher updated to v3, add config directive and installer function

This commit is contained in:
2018-10-10 13:44:24 +02:00
parent 9884277996
commit f993c9c81b

View File

@@ -1,6 +1,15 @@
# Set editor to vim
set EDITOR vim
set -q XDG_CONFIG_HOME; or set XDG_CONFIG_HOME ~/.config
if not functions -q fisher
echo "Installing fisher for the first time..." >&2
set -q XDG_CONFIG_HOME; or set XDG_CONFIG_HOME ~/.config
curl https://git.io/fisher --create-dirs -sLo $XDG_CONFIG_HOME/fish/functions/fisher.fish
fisher
end
# Virtualenv support with virtualfish
eval (python3 -m virtualfish compat_aliases)