summaryrefslogtreecommitdiff
path: root/nvim/lsp/vespa_ls.lua
diff options
context:
space:
mode:
authoranand <anand.panchdhari@gmail.com>2026-04-05 16:47:53 +0530
committeranand <anand.panchdhari@gmail.com>2026-04-05 16:47:53 +0530
commit76f6235bcd178cc5c28cc4fbf0d09fafb1f63a9b (patch)
tree8d248824df3cacdfef1789d3663175bce48d05b5 /nvim/lsp/vespa_ls.lua
parent50525874363953113aa715ea519d179e9c87bbd0 (diff)
some changes
Diffstat (limited to 'nvim/lsp/vespa_ls.lua')
-rwxr-xr-xnvim/lsp/vespa_ls.lua37
1 files changed, 0 insertions, 37 deletions
diff --git a/nvim/lsp/vespa_ls.lua b/nvim/lsp/vespa_ls.lua
deleted file mode 100755
index 883005a..0000000
--- a/nvim/lsp/vespa_ls.lua
+++ /dev/null
@@ -1,37 +0,0 @@
----@brief
----
---- https://github.com/vespa-engine/vespa/tree/master/integration/schema-language-server
----
---- Vespa Language Server provides LSP features such as completion, diagnostics,
---- and go-to-definition for Vespa schema files (`.sd`), profile files (`.profile`),
---- and YQL query files (`.yql`).
----
---- This language server requires Java 17 or higher. You can build the jar from source.
----
---- You can override the default command by manually configuring it like this:
----
---- ```lua
---- vim.lsp.config('vespa_ls', {
---- cmd = { 'java', '-jar', '/path/to/vespa-language-server.jar' },
---- })
---- ```
----
---- The project root is determined based on the presence of a `.git` directory.
----
---- To make Neovim recognize the proper filetypes, add the following setting in `init.lua`:
----
---- vim.filetype.add {
---- extension = {
---- profile = 'sd',
---- sd = 'sd',
---- yql = 'yql',
---- },
---- }
-
-return {
- cmd = { 'java', '-jar', 'vespa-language-server.jar' },
- filetypes = { 'sd', 'profile', 'yql' },
- root_markers = {
- '.git',
- },
-}