Initial commit
This commit is contained in:
2
conf.d/nix.fish
Normal file
2
conf.d/nix.fish
Normal file
@@ -0,0 +1,2 @@
|
||||
|
||||
if test -e /home/andr3/.nix-profile/etc/profile.d/nix.fish; . /home/andr3/.nix-profile/etc/profile.d/nix.fish; end # added by Nix installer
|
||||
28
conf.d/nvm.fish
Normal file
28
conf.d/nvm.fish
Normal file
@@ -0,0 +1,28 @@
|
||||
function _nvm_install --on-event nvm_install
|
||||
set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share
|
||||
set --universal nvm_data $XDG_DATA_HOME/nvm
|
||||
set --query nvm_mirror || set --universal nvm_mirror https://nodejs.org/dist
|
||||
|
||||
test ! -d $nvm_data && command mkdir -p $nvm_data
|
||||
echo "Downloading the Node distribution index for the first time..." 2>/dev/null
|
||||
_nvm_index_update $nvm_mirror $nvm_data/.index
|
||||
end
|
||||
|
||||
function _nvm_update --on-event nvm_update
|
||||
set --query XDG_DATA_HOME || set --local XDG_DATA_HOME ~/.local/share
|
||||
set --universal nvm_data $XDG_DATA_HOME/nvm
|
||||
set --query nvm_mirror || set --universal nvm_mirror https://nodejs.org/dist
|
||||
end
|
||||
|
||||
function _nvm_uninstall --on-event nvm_uninstall
|
||||
command rm -rf $nvm_data
|
||||
|
||||
set --query nvm_current_version && _nvm_version_deactivate $nvm_current_version
|
||||
|
||||
set --names | string replace --filter --regex -- "^nvm" "set --erase nvm" | source
|
||||
functions --erase (functions --all | string match --entire --regex -- "^_nvm_")
|
||||
end
|
||||
|
||||
status is-interactive &&
|
||||
set --query nvm_default_version && ! set --query nvm_current_version &&
|
||||
nvm use $nvm_default_version >/dev/null
|
||||
Reference in New Issue
Block a user