diff --git a/home/.zshrc b/home/.zshrc index 01502c1..0af0a0a 100644 --- a/home/.zshrc +++ b/home/.zshrc @@ -82,3 +82,7 @@ else fi unset __mamba_setup # <<< mamba initialize <<< + +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion diff --git a/home/bash-config/rc.functions b/home/bash-config/rc.functions index e69de29..b022ca3 100644 --- a/home/bash-config/rc.functions +++ b/home/bash-config/rc.functions @@ -0,0 +1,3 @@ +rmf() { + fzf -m | xargs -0 -I {} rm {} +}