Add nvm to fish
changed theme back to 'tokyonight' on nvim
Added jq for ranger as a dependency
This commit is contained in:
KaasKop-
2023-12-29 16:19:44 +01:00
parent 1e94159dbf
commit cf061d2777
14 changed files with 363 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
function _nvm_list
set --local versions $nvm_data/*
set --query versions[1] &&
string match --entire --regex -- (string match --regex -- "v\d.+" $versions |
string escape --style=regex |
string join "|"
) <$nvm_data/.index
command --all node |
string match --quiet --invert --regex -- "^$nvm_data" && echo system
end