]> git.r.bdr.sh - rbdr/dotfiles/commitdiff
Allow for local tool versions
authorRuben Beltran del Rio <redacted>
Wed, 6 Jul 2022 10:28:02 +0000 (12:28 +0200)
committerRuben Beltran del Rio <redacted>
Wed, 6 Jul 2022 10:28:02 +0000 (12:28 +0200)
zsh/modules/prompt.zsh

index 0ab1e0d4aff6fdd7b74be73cdcc9dfc6ac7ce752..beeb85d720a3c8e7b298857161d72ce86e4d03fa 100644 (file)
@@ -1,5 +1,13 @@
 autoload -Uz promptinit && promptinit
 
+function tool_versions() {
+  if [[ -s ".tool-versions" ]]; then
+       echo '.tool-versions'
+       return
+  fi
+  echo "${HOME}/.tool-versions"
+}
+
 if [[ "$TERM" == (dumb|linux|*bsd*) ]] || (( $#prompt_argv < 1 )); then
   prompt 'off'
 fi
@@ -22,20 +30,20 @@ function env_info {
 }
 
 function python_info {
-  pythoninfo=`cat ~/.tool-versions | rg python | cut -d ' ' -f 2`
+  pythoninfo=`cat "$(tool_versions)" | rg python | cut -d ' ' -f 2`
   pythoninfo=${ASDF_PYTHON_VERSION:-$pythoninfo}
   venv="${VIRTUAL_ENV##*/}"
   echo "%{%F{green}%}py%{%F{black}%} ${pythoninfo:-no}@${venv:-default}"
 }
 
 function ruby_info {
-  rubyinfo=`cat ~/.tool-versions | rg ruby | cut -d ' ' -f 2`
+  rubyinfo=`cat "$(tool_versions)" | rg ruby | cut -d ' ' -f 2`
   rubyinfo=${ASDF_RUBY_VERSION:-$rubyinfo}
   echo "%{%F{red}%}rb%{%F{black}%} ${rubyinfo:-no}"
 }
 
 function node_info {
-  nodeinfo=`cat ~/.tool-versions | rg nodejs | cut -d ' ' -f 2`
+  nodeinfo=`cat "$(tool_versions)" | rg nodejs | cut -d ' ' -f 2`
   nodeinfo=${ASDF_NODEJS_VERSION:-$nodeinfo}
   echo "%{%F{yellow}%}js%{%F{black}%} ${nodeinfo:-no}"
 }