From 9d789aa496fad3d5d083a4c5be8f4f860956641a Mon Sep 17 00:00:00 2001 From: gered Date: Sun, 10 Nov 2024 14:29:56 -0500 Subject: [PATCH] add a bit more verbose output to install-deps.sh --- nvim/install-deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nvim/install-deps.sh b/nvim/install-deps.sh index dad9ce5..865140d 100755 --- a/nvim/install-deps.sh +++ b/nvim/install-deps.sh @@ -10,12 +10,14 @@ sudo emerge -av --noreplace \ # don't want to be root for this, rustup is typically installed by non-root users and won't be # present for root at all. +echo "Installing rust dependencies" if ! command -v rustup &> /dev/null; then - echo "Not installing rust-analyzer, rustup not found." + echo "Not installing rust-analyzer, rustup not found. Run 'install_rustup' first!" else rustup component add rust-src rust-analyzer fi +echo "Installing customized llm-ls binary" if [ ! -f "${HOME}/.cargo/bin/llm-ls" ]; then echo "Downloading llm-ls binary" mkdir -p "${HOME}/.cargo/bin"