blob: 863b7720c22f20aefd26769ea5bd97cbb612b517 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---@brief
---
--- https://github.com/astoff/digestif
---
--- Digestif is a code analyzer, and a language server, for LaTeX, ConTeXt et caterva. It provides
---
--- context-sensitive completion, documentation, code navigation, and related functionality to any
---
--- text editor that speaks the LSP protocol.
---@type vim.lsp.Config
return {
cmd = { 'digestif' },
filetypes = { 'tex', 'plaintex', 'context' },
root_markers = { '.git' },
}
|