Update configs

This commit is contained in:
alvinlollo
2026-07-23 14:25:05 +10:00
parent f71c4c3816
commit f380ff8824
14 changed files with 602 additions and 16 deletions
+14
View File
@@ -0,0 +1,14 @@
function _nvm_list
set --local versions $nvm_data/*
set --query versions[1] &&
string match --entire --regex -- (
string replace --all -- $nvm_data/ "" $versions |
string match --regex -- "v\d.+" |
string escape --style=regex |
string join "|"
) <$nvm_data/.index
command --all node |
string match --quiet --invert --regex -- "^$nvm_data" && echo system
end