mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 23:11:00 +01:00
19 lines
337 B
Lua
19 lines
337 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/tilt-dev/tilt
|
|
---
|
|
--- Tilt language server.
|
|
---
|
|
--- You might need to add filetype detection manually:
|
|
---
|
|
--- ```vim
|
|
--- autocmd BufRead Tiltfile setf=tiltfile
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'tilt', 'lsp', 'start' },
|
|
filetypes = { 'tiltfile' },
|
|
root_markers = { '.git' },
|
|
}
|