diff options
| author | github-actions <github-actions@github.com> | 2021-05-16 21:23:59 +0000 |
|---|---|---|
| committer | github-actions <github-actions@github.com> | 2021-05-16 21:23:59 +0000 |
| commit | 0699e6c16c37c08418339675d142af0e00ccbeaa (patch) | |
| tree | da47e7be5d2fc01cdbc51641ec43fd8186b93d81 /CONFIG.md | |
| parent | Merge pull request #909 from clason/texlab-3.0 (diff) | |
| download | nvim-lspconfig-0699e6c16c37c08418339675d142af0e00ccbeaa.tar nvim-lspconfig-0699e6c16c37c08418339675d142af0e00ccbeaa.tar.gz nvim-lspconfig-0699e6c16c37c08418339675d142af0e00ccbeaa.tar.bz2 nvim-lspconfig-0699e6c16c37c08418339675d142af0e00ccbeaa.tar.lz nvim-lspconfig-0699e6c16c37c08418339675d142af0e00ccbeaa.tar.xz nvim-lspconfig-0699e6c16c37c08418339675d142af0e00ccbeaa.tar.zst nvim-lspconfig-0699e6c16c37c08418339675d142af0e00ccbeaa.zip | |
[docgen] Update CONFIG.md
skip-checks: true
Diffstat (limited to 'CONFIG.md')
| -rw-r--r-- | CONFIG.md | 27 |
1 files changed, 13 insertions, 14 deletions
@@ -5528,11 +5528,11 @@ require'lspconfig'.terraformls.setup{} ## texlab -https://texlab.netlify.com/ +https://github.com/latex-lsp/texlab A completion engine built from scratch for (La)TeX. -See https://texlab.netlify.com/docs/reference/configuration for configuration options. +See https://github.com/latex-lsp/texlab/docs/options.md for configuration options. ```lua @@ -5547,23 +5547,22 @@ require'lspconfig'.texlab.setup{} filetypes = { "tex", "bib" } root_dir = vim's starting directory settings = { - bibtex = { - formatting = { - lineLength = 120 - } - }, - latex = { + texlab = { + auxDirectory = ".", + bibtexFormatter = "texlab", build = { args = { "-pdf", "-interaction=nonstopmode", "-synctex=1", "%f" }, executable = "latexmk", - onSave = false + isContinuous = false }, - forwardSearch = { - args = {}, - onSave = false + chktex = { + onEdit = false, + onOpenAndSave = false }, - lint = { - onChange = false + diagnosticsDelay = 300, + formatterLineLength = 80, + forwardSearch = { + args = {} } } } |
