mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
13 lines
251 B
Lua
13 lines
251 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/terror/just-lsp
|
|
---
|
|
--- `just-lsp` is an LSP for just built on top of the tree-sitter-just parser.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'just-lsp' },
|
|
filetypes = { 'just' },
|
|
root_markers = { '.git' },
|
|
}
|