-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from sasasin/fisher-update
fisher 3.x to 4.x upgrade
- Loading branch information
Showing
13 changed files
with
243 additions
and
402 deletions.
There are no files selected for viewing
Empty file.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
if test -n "$ASDF_DATA_DIR" -a -d "$ASDF_DATA_DIR" | ||
source $ASDF_DATA_DIR/asdf.fish | ||
end | ||
|
||
if test -e ~/.asdf/asdf.fish | ||
else if test -f ~/.asdf/asdf.fish | ||
source ~/.asdf/asdf.fish | ||
else if test -f /usr/local/opt/asdf/asdf.fish | ||
source /usr/local/opt/asdf/asdf.fish | ||
else if test -f /opt/homebrew/opt/asdf/asdf.fish | ||
source /opt/homebrew/opt/asdf/asdf.fish | ||
else if test -f /opt/homebrew/opt/asdf/libexec/asdf.fish | ||
source /opt/homebrew/opt/asdf/libexec/asdf.fish | ||
end |
Empty file.
0
.config/fish/fishfile → .config/fish/fish_plugins
100755 → 100644
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Oops, something went wrong.