diff options
| author | David Sanchez <ricarvid_9319@hotmail.com> | 2025-03-21 06:43:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-21 13:43:27 +0800 |
| commit | 26208808986c5a0ae8f522ace64f3879eb0b2edf (patch) | |
| tree | cc660d6a72fa8143ecf6e43db6189aa46eff1dcf /lua | |
| parent | fix(tailwindcss): improved tailwindcss detection (#3648) (diff) | |
| download | nvim-lspconfig-26208808986c5a0ae8f522ace64f3879eb0b2edf.tar nvim-lspconfig-26208808986c5a0ae8f522ace64f3879eb0b2edf.tar.gz nvim-lspconfig-26208808986c5a0ae8f522ace64f3879eb0b2edf.tar.bz2 nvim-lspconfig-26208808986c5a0ae8f522ace64f3879eb0b2edf.tar.lz nvim-lspconfig-26208808986c5a0ae8f522ace64f3879eb0b2edf.tar.xz nvim-lspconfig-26208808986c5a0ae8f522ace64f3879eb0b2edf.tar.zst nvim-lspconfig-26208808986c5a0ae8f522ace64f3879eb0b2edf.zip | |
fix(ltex_plus): add latex to `enabled` settings (#3654)
Problem:
LSP not working with latex files. Spell checking skipped in
latex files
Solution:
Add latex to the enabled section because even though 'tex' is
the filetype the language ID is 'latex'
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/configs/ltex_plus.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lspconfig/configs/ltex_plus.lua b/lua/lspconfig/configs/ltex_plus.lua index 915f0451..356d65d8 100644 --- a/lua/lspconfig/configs/ltex_plus.lua +++ b/lua/lspconfig/configs/ltex_plus.lua @@ -58,6 +58,7 @@ return { 'rnoweb', 'rst', 'tex', + 'latex', 'text', 'typst', 'xhtml', |
