aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/vls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lsp/vls.lua')
-rw-r--r--lsp/vls.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/lsp/vls.lua b/lsp/vls.lua
new file mode 100644
index 00000000..042041e5
--- /dev/null
+++ b/lsp/vls.lua
@@ -0,0 +1,12 @@
+---@brief
+---
+---https://github.com/vlang/vls
+--
+-- V language server.
+--
+-- `v-language-server` can be installed by following the instructions [here](https://github.com/vlang/vls#installation).
+return {
+ cmd = { 'v', 'ls' },
+ filetypes = { 'v', 'vlang' },
+ root_markers = { 'v.mod', '.git' },
+}