fzf bindings and terraform lsp

This commit is contained in:
Andrejus
2020-07-23 18:15:44 +01:00
parent 4bbafe1b4f
commit f16a4b9c1c
6 changed files with 52 additions and 14 deletions

View File

@@ -1,7 +1,9 @@
apt-transport-https
bat
curl
git
gnupg2
jq
make
neovim
net-tools

View File

@@ -13,3 +13,13 @@ fi
echo "terraform is installed"
terraform --version
if not_installed "terraform-lsp"; then
echo "Installing terraform-lsp..."
wget https://github.com/juliosueiras/terraform-lsp/releases/download/v0.0.11-beta2/terraform-lsp_0.0.11-beta2_linux_amd64.tar.gz
tar -C "$dotfiles_dir/tmp" -xzf terraform-lsp_0.0.11-beta2_linux_amd64.tar.gz
rm terraform-lsp_0.0.11-beta2_linux_amd64.tar.gz
mv "$dotfiles_dir/tmp/terraform-lsp" ~/.local/bin
fi
echo "terraform-lsp is installed"