🥰 My dot files
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Adds some work stuff

+24
+3
.config/fish/config.fish
··· 58 58 # rust 59 59 set PATH $HOME/.cargo/bin $PATH 60 60 61 + # bsky-infra 62 + set --export OBJC_DISABLE_INITIALIZE_FORK_SAFETY YES 63 + 61 64 # aliases 62 65 alias ll "ls -laGh" 63 66 alias tmp "cd (mktemp -d)"
+15
.config/fish/functions/load_nvm.fish
··· 1 + function load_nvm --on-variable="PWD" 2 + set -l default_node_version (nvm version default) 3 + set -l node_version (nvm version) 4 + set -l nvmrc_path (nvm_find_nvmrc) 5 + if test -n "$nvmrc_path" 6 + set -l nvmrc_node_version (nvm version (cat $nvmrc_path)) 7 + if test "$nvmrc_node_version" = "N/A" 8 + nvm install (cat $nvmrc_path) 9 + else if test "$nvmrc_node_version" != "$node_version" 10 + nvm use $nvmrc_node_version 11 + end 12 + else if test "$node_version" != "$default_node_version" 13 + nvm use default 14 + end 15 + end
+3
.config/fish/functions/nvm.fish
··· 1 + function nvm 2 + bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv 3 + end
+3
.config/fish/functions/nvm_find_nvmrc.fish
··· 1 + function nvm_find_nvmrc 2 + bass source ~/.nvm/nvm.sh --no-use ';' nvm_find_nvmrc 3 + end