From 3ff89c5124c80a47ea0e2c0e30093518baf37128 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Thu, 9 Jul 2020 12:53:29 -0600 Subject: [PATCH] LSP working for Vimscript --- backend/src/langs.ts | 1 + scripts/docker-install-phase4.bash | 3 +++ 2 files changed, 4 insertions(+) diff --git a/backend/src/langs.ts b/backend/src/langs.ts index 7006be5..047d438 100644 --- a/backend/src/langs.ts +++ b/backend/src/langs.ts @@ -1092,6 +1092,7 @@ END repl: "vim", main: "main.vim", run: `vim -c "$(< main.vim)"`, + lsp: "vim-language-server --stdio", template: `:echo "Hello, world!" `, }, diff --git a/scripts/docker-install-phase4.bash b/scripts/docker-install-phase4.bash index 5bc51cb..f6dd297 100755 --- a/scripts/docker-install-phase4.bash +++ b/scripts/docker-install-phase4.bash @@ -73,6 +73,9 @@ luarocks install digestif # TypeScript npm install -g ts-node typescript +# Vim +npm install -g vim-language-server + # Whitespace pip3 install whitespace