diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 000000000..13566b81b --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/asdf.iml b/.idea/asdf.iml new file mode 100644 index 000000000..d6ebd4805 --- /dev/null +++ b/.idea/asdf.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/aws.xml b/.idea/aws.xml new file mode 100644 index 000000000..b63b642cf --- /dev/null +++ b/.idea/aws.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 000000000..639900d13 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 000000000..6aa0d9dd9 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 000000000..35eb1ddfb --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/asdf.fish b/asdf.fish index 0a680cb54..20024efff 100644 --- a/asdf.fish +++ b/asdf.fish @@ -11,12 +11,12 @@ else end # Do not use fish_add_path (added in Fish 3.2) because it -# potentially changes the order of items in fish_user_paths -if not contains $_asdf_bin $fish_user_paths - set --universal --prepend fish_user_paths $_asdf_bin +# potentially changes the order of items in PATH +if not contains $_asdf_bin $PATH + set -gx --prepend PATH $_asdf_bin end -if not contains $_asdf_shims $fish_user_paths - set --universal --prepend fish_user_paths $_asdf_shims +if not contains $_asdf_shims $PATH + set -gx --prepend PATH $_asdf_shims end set --erase _asdf_bin set --erase _asdf_shims