mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
17 lines
446 B
Lua
17 lines
446 B
Lua
---@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' },
|
|
}
|