blob: 83464f01b496a622ba4a00bb8d1be4d752bb7bad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---@brief
---
--- https://github.com/tilt-dev/tilt
---
--- Tilt language server.
---
--- You might need to add filetype detection manually:
---
--- ```vim
--- autocmd BufRead Tiltfile setf=tiltfile
--- ```
return {
cmd = { 'tilt', 'lsp', 'start' },
filetypes = { 'tiltfile' },
root_markers = { '.git' },
}
|