diff options
| author | Christian Clason <christian.clason@uni-due.de> | 2021-06-03 11:07:33 +0200 |
|---|---|---|
| committer | Christian Clason <christian.clason@uni-due.de> | 2021-06-27 18:21:30 +0200 |
| commit | 1e5bc01171bfc53cee38b6823e14ffda807ccbc7 (patch) | |
| tree | 5a78c17a348d9ebf530263c0996a2b84655fb595 /lua | |
| parent | Merge pull request #949 from marioortizmanero/patch-2 (diff) | |
| download | nvim-lspconfig-1e5bc01171bfc53cee38b6823e14ffda807ccbc7.tar nvim-lspconfig-1e5bc01171bfc53cee38b6823e14ffda807ccbc7.tar.gz nvim-lspconfig-1e5bc01171bfc53cee38b6823e14ffda807ccbc7.tar.bz2 nvim-lspconfig-1e5bc01171bfc53cee38b6823e14ffda807ccbc7.tar.lz nvim-lspconfig-1e5bc01171bfc53cee38b6823e14ffda807ccbc7.tar.xz nvim-lspconfig-1e5bc01171bfc53cee38b6823e14ffda807ccbc7.tar.zst nvim-lspconfig-1e5bc01171bfc53cee38b6823e14ffda807ccbc7.zip | |
feat(texlab): update options to 3.2.0
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/texlab.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lua/lspconfig/texlab.lua b/lua/lspconfig/texlab.lua index c849ffe7..6f47ca0a 100644 --- a/lua/lspconfig/texlab.lua +++ b/lua/lspconfig/texlab.lua @@ -61,7 +61,8 @@ configs.texlab = { build = { executable = "latexmk"; args = {"-pdf", "-interaction=nonstopmode", "-synctex=1", "%f"}; - isContinuous = false; + onSave = false; + forwardSearchAfter = false; }; auxDirectory = '.'; forwardSearch = { @@ -73,6 +74,11 @@ configs.texlab = { onEdit = false; }; diagnosticsDelay = 300; + latexFormatter = 'latexindent'; + latexindent = { + ["local"] = nil; -- local is a reserved keyword + modifyLineBreaks = false; + }; bibtexFormatter = 'texlab'; formatterLineLength = 80; }; |
