add customized llm-ls binary installation steps to install-deps.sh

This commit is contained in:
Gered 2024-11-10 14:27:27 -05:00
parent e1a2c551ed
commit 6e127fb0ee

View file

@ -16,3 +16,10 @@ else
rustup component add rust-src rust-analyzer
fi
if [ ! -f "${HOME}/.cargo/bin/llm-ls" ]; then
echo "Downloading llm-ls binary"
mkdir -p "${HOME}/.cargo/bin"
curl -o "${HOME}/.cargo/bin/llm-ls" "https://blarg.ca/files/llm-ls/20241110/llm-ls"
else
echo "llm-ls binary already installed"
fi