aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/neovim.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/neovim.sh')
-rwxr-xr-xbootstrap/neovim.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/bootstrap/neovim.sh b/bootstrap/neovim.sh
index 1508401..e1a9112 100755
--- a/bootstrap/neovim.sh
+++ b/bootstrap/neovim.sh
@@ -151,14 +151,19 @@ install_tools() {
151} 151}
152 152
153install_lsp() { 153install_lsp() {
154 install_npm ansible-language-server @ansible/ansible-language-server
154 install_npm basedpyright-langserver basedpyright 155 install_npm basedpyright-langserver basedpyright
155 install_npm bash-language-server bash-language-server 156 install_npm bash-language-server bash-language-server
156 157
158 # ansible-lint/shellcheck werden von ansible-language-server bzw.
159 # bash-language-server intern aufgerufen.
157 case "$OS" in 160 case "$OS" in
158 Darwin) 161 Darwin)
162 install_pkg ansible-lint ansible-lint
159 install_pkg shellcheck shellcheck 163 install_pkg shellcheck shellcheck
160 ;; 164 ;;
161 FreeBSD) 165 FreeBSD)
166 install_pkg ansible-lint py-ansible-lint
162 install_pkg shellcheck hs-ShellCheck 167 install_pkg shellcheck hs-ShellCheck
163 ;; 168 ;;
164 esac 169 esac