From 1be12bd6774eb3e627f5d636f04e2418b34c6413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Mon, 18 Jul 2022 21:08:52 +0200 Subject: [PATCH] Added the new debuggers in the nvim --- .config/nvim/init.vim | 2 +- .config/nvim/installer.sh | 72 ++++++++++++++++++++++++++++++++++----- 2 files changed, 65 insertions(+), 9 deletions(-) diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index a713c80..16e8acd 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -185,7 +185,7 @@ local handlers = { -- Use a loop to conveniently call 'setup' on multiple servers and -- map buffer local keybindings when the language server attaches -local servers = { 'pyright', 'bashls', 'ansiblels', 'gopls', 'solargraph'} +local servers = { 'pyright', 'bashls', 'ansiblels', 'gopls', 'solargraph', 'terraformls'} for _, lsp in pairs(servers) do require('lspconfig')[lsp].setup { on_attach = on_attach, diff --git a/.config/nvim/installer.sh b/.config/nvim/installer.sh index db31522..f6d63ee 100755 --- a/.config/nvim/installer.sh +++ b/.config/nvim/installer.sh @@ -1,10 +1,66 @@ #!/bin/bash -npm -g i pyright --force -npm -g i bash-language-server --force -npm -g i yaml-language-server --force -npm -g i @ansible/ansible-language-server --force -GO111MODULE=on go install mvdan.cc/sh/v3/cmd/shfmt@latest -GO111MODULE=on go install golang.org/x/tools/gopls@latest -pip install black -pip3 install black +function timestamp() { + echo "[+] $(date +'%F %T') [INFO] $*" +} + +function err() { + echo "[-] $(date +'%F %T') [ERROR] $*" >&2 +} + +function command_start() { + timestamp "Command $* has been started." + if ! "$*"; then + err "Command $* went wrong." + exit + fi + timestamp "Command $* has been ended." +} + +function install_pyright() { + # Install pyright + sudo npm -g i pyright --force +} + +function install_bash-language-server() { + # Install bash-language-server + sudo npm -g i bash-language-server --force +} + +function install_yaml-language-server() { + # Install yaml-language-server + sudo npm -g i yaml-language-server --force +} + +function install_ansible-language-server() { + # Install ansible-language-server + sudo npm -g i @ansible/ansible-language-server --force +} + +function install_shfmt() { + # Install shfmt + GO111MODULE=on go install mvdan.cc/sh/v3/cmd/shfmt@latest +} + +function install_gopls() { + # Install gopls + GO111MODULE=on go install golang.org/x/tools/gopls@latest +} + +function install_black() { + # Install black + pip install black + pip3 install black +} + +function main() { + command_start install_pyright + command_start install_bash-language-server + command_start install_yaml-language-server + command_start install_ansible-language-server + command_start install_shfmt + command_start install_gopls + command_start install_black +} + +main