diff options
| author | Ambrus Tóth <32463042+tothambrus11@users.noreply.github.com> | 2025-12-14 21:00:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-14 14:00:09 -0500 |
| commit | 7c4797350608c0149e02fb8b8613a98e3ee39b76 (patch) | |
| tree | a719dd89fbe07e9a0e2fa102ea8db0d0915ebc60 | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-7c4797350608c0149e02fb8b8613a98e3ee39b76.tar nvim-lspconfig-7c4797350608c0149e02fb8b8613a98e3ee39b76.tar.gz nvim-lspconfig-7c4797350608c0149e02fb8b8613a98e3ee39b76.tar.bz2 nvim-lspconfig-7c4797350608c0149e02fb8b8613a98e3ee39b76.tar.lz nvim-lspconfig-7c4797350608c0149e02fb8b8613a98e3ee39b76.tar.xz nvim-lspconfig-7c4797350608c0149e02fb8b8613a98e3ee39b76.tar.zst nvim-lspconfig-7c4797350608c0149e02fb8b8613a98e3ee39b76.zip | |
feat: hylo_ls #4237
| -rw-r--r-- | lsp/hylo_ls.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lsp/hylo_ls.lua b/lsp/hylo_ls.lua new file mode 100644 index 00000000..682cddb8 --- /dev/null +++ b/lsp/hylo_ls.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/hylo-lang/hylo-language-server +--- +--- A language server for the Hylo programming language. + +---@type vim.lsp.Config +return { + cmd = { 'hylo-language-server', '--stdio' }, + filetypes = { 'hylo' }, + root_markers = { '.git' }, + settings = {}, +} |
