summaryrefslogtreecommitdiff
path: root/ftplugin/tex.lua
AgeCommit message (Collapse)Author
2021-10-03refactor: auto-generate language configuration (#1584)kylo252
Refactor the monolithic `lvim.lang` design into a more modular approach. IMPORTANT: run `:LvimUpdate` in order to generate the new ftplugin template files.
2021-07-24New contract (#1080)Christian Chiarulli
Changes to the global config object O is now lvim user_plugins is now plugins user_autocommands is now autocommands No more lang specific plugins Null-ls has replaced both formatter.nvim and nvim-lint
2021-07-14reformat most langschristianchiarulli
2021-07-14User configurable latex lsp#2 (#861)PZ31k0nauT
* Adjust tex.lua and default-config for lsp magic With this commit table elements are added to default-config.lua, which are referenced in tex.lua. The settings are set to default. This enables the user to configure settings accordingly inside of lv-config.lua. - build arguments - forwardsearch executable e.g. zathura - forwardsearch arguments for chosen executable are implemented automatically - handlers for virtual_text, signs, underline and update_in_insert are set to the default * Added Texlab-Build and Forward as which-keys With this commit the two commands `:TexlabBuild` and `:TexlabForward` are added as which-keys under the category +LaTeX. - b is for TexlabBuild - p is for TexlanForward (Preview) * Change which-key for +Latex The which-key for +Latex has to be changed because `L` is already used by +Lush. With this commit the which-key for +Latex is changed to `t`. * Add documentation of options All configurable texlab option is documented in lv-config.example.lua. Also a link to the documentation of the options from latex-lsp/texlab is added.
2021-07-13Added default formatters (#908)Abouzar Parvan
* added default formatters for a couple of langs * fix: sugesstions from tastyep * allow users to change default formatters * suggestion: mellow pointed out the telescope issue * we don't need to use formatter.setup
2021-07-11Added autosave on focus loss option and list of errors to be ignored to ↵Jacek Kiedrowski
vimtex. (#873)
2021-07-10refactor tex to use ftplugin onlychristianchiarulli
2021-07-08Check lsp client is active for all language files (#790)hui.liu
2021-07-04start formatting rulesRafael
2021-07-03Rename latex.lua to tex.lua (#633)PZ31k0nauT