feat(neovim-plugin-updates): Change configs to accomodate plugin updates

- WhichKey: config format changed
- Conform: config format changed
- nvim-ufo: fix version to `1.4.0` as newer version broke things
- code-lsp: add ltex LSP that integrated with free LanguageTool server
This commit is contained in:
Pratik Tripathy
2024-09-09 18:01:28 +05:30
parent 7e12c17dbd
commit b8ea02473b
4 changed files with 52 additions and 34 deletions

View File

@@ -73,6 +73,26 @@ return {
},
bashls = { filetypes = { "sh", "bash", "zsh" } },
html = { filetypes = { "html", "twig", "hbs" } },
ltex = {
filetypes = { "markdown", "text" },
flags = { debounce_text_changes = 3000 },
settings = {
ltex = {
language = "en",
markdown = {
nodes = {
CodeBlock = "ignore",
FencedCodeBlock = "ignore",
Code = "ignore",
AutoLink = "ignore",
},
checkFrequency = "save",
languageToolHttpServerUri = "https://api.languagetool.org",
},
},
},
},
omnisharp = {
-- DotNet = {
-- enablePackageRestore = true,