diff options
author | Yigit Sever | 2024-08-20 09:31:01 +0200 |
---|---|---|
committer | Yigit Sever | 2024-08-20 09:31:01 +0200 |
commit | c5a2b5ba5d470d160211cdfd8903e2a99a1579a7 (patch) | |
tree | 2a7ddd1c117156e4262431959c0897fb41317bbd /.config/nvim | |
parent | d0ad91ebf38a31642eccef4c32666fa5023418f8 (diff) | |
download | dotfiles-c5a2b5ba5d470d160211cdfd8903e2a99a1579a7.tar.gz dotfiles-c5a2b5ba5d470d160211cdfd8903e2a99a1579a7.tar.bz2 dotfiles-c5a2b5ba5d470d160211cdfd8903e2a99a1579a7.zip |
nvim: add ltex fts explicitly
Diffstat (limited to '.config/nvim')
-rw-r--r-- | .config/nvim/lua/plugins/lsp.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua index 8c08448..e80223a 100644 --- a/.config/nvim/lua/plugins/lsp.lua +++ b/.config/nvim/lua/plugins/lsp.lua | |||
@@ -141,9 +141,10 @@ return { | |||
141 | log_level = "none", | 141 | log_level = "none", |
142 | } | 142 | } |
143 | end, | 143 | end, |
144 | filetypes = { "bib", "gitcommit", "markdown", "org", "plaintex", "rst", "rnoweb", "tex", "pandoc", "quarto", "rmd", "context", "mail", "text" }, | ||
144 | settings = { | 145 | settings = { |
145 | ltex = { | 146 | ltex = { |
146 | -- my settings here | 147 | enabled = { "bibtex", "gitcommit", "markdown", "org", "tex", "restructuredtext", "rsweave", "latex", "quarto", "rmd", "context", "mail", "plaintext" } |
147 | } | 148 | } |
148 | } | 149 | } |
149 | }) | 150 | }) |