This commit is contained in:
Alex Yatskov 2022-09-05 17:38:54 -07:00
parent 1a337a7b07
commit 58471ed007
13 changed files with 14 additions and 12 deletions

View File

@ -1,2 +1,4 @@
#!/bin/bash
git submodule update --init --recursive
# npm install -g typescript typescript-language-server vim-language-server
# sudo pip install jedi-language-server

@ -1 +1 @@
Subproject commit 51fdaad002a5ad827bd5ebfac43386592005d02c
Subproject commit 54d42e3f403cc419b8f11c625354d9d38381ebc8

@ -1 +1 @@
Subproject commit c311c0a95fc2529c26ab36a8f530e9dd4426304c
Subproject commit c491d702b76c6b4918abb80be3cfb57d1b618ffa

@ -1 +1 @@
Subproject commit 9897465a7663997b7b42372164ffc3635321a2fe
Subproject commit 33fbb2c3d2c512bd79ea03cf11fea405cbe618a9

@ -1 +1 @@
Subproject commit 22bf8c4a549367893fdf7a6194aa87c5265fb9ca
Subproject commit 0fafc3ef648bd612757630097c96b725a36a0476

@ -1 +1 @@
Subproject commit 7fb091aad8d824bef1d7bc9365921c65e26d82ad
Subproject commit e77e1bf61b4f1ddc7b13c6160b7389df42aba24d

@ -1 +1 @@
Subproject commit ebb89a0846ff8b8bc64579155d661b825f97d3f2
Subproject commit 90c67463117dbf61101952963c3eb904037a87d7

@ -1 +1 @@
Subproject commit 0faba07179f96cae2ab49cf2cc22ebeb922c1532
Subproject commit feaba6b8b6ca099d267c81ee2c4ba43ce6de8499

@ -1 +1 @@
Subproject commit a65debefd9928f331587c76f20a41fedf827fc4c
Subproject commit 81b40878f286f370df2a2b3a52c4d860643d2142

@ -1 +1 @@
Subproject commit ff04324bffd86f9c146cc5fc2c0a2f95a1509643
Subproject commit dd8107cabf5fe85df94d5eedcae52415e543f208

@ -1 +1 @@
Subproject commit b7506c6da8ea3a88e268a91aa6630be3e26a20a9
Subproject commit 22b2273cfe562ac1c1af976ce77f18a3b1776f3c

@ -1 +1 @@
Subproject commit f19c053a4b36b03fba92f6dd288426c8f3a0156c
Subproject commit 123c98450d6e37fef0a6fa512726ca766aec037d

View File

@ -46,7 +46,7 @@ lua << EOF
-- Use a loop to conveniently call 'setup' on multiple servers and
-- map buffer local keybindings when the language server attaches
local nvim_lsp = require('lspconfig')
for _, lsp in ipairs({'jedi_language_server', 'gopls', 'rust_analyzer', 'clangd', 'tsserver'}) do
for _, lsp in ipairs({'clangd', 'gopls', 'jedi_language_server', 'rust_analyzer', 'tsserver', 'vimls'}) do
nvim_lsp[lsp].setup({
on_attach = on_attach,
capabilities = capabilities