diff options
| -rw-r--r-- | ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/lsp.lua | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/lsp.lua b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/lsp.lua index 2015c47..829eac4 100644 --- a/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/lsp.lua +++ b/ar/.config/TheSiahxyz/lua/thesiahxyz/plugins/lsp.lua @@ -132,6 +132,23 @@ return { -- }, }) end, + ["harper_ls"] = function() + lspconfig.harper_ls.setup({ + capabilities = capabilities, + filetypes = { "markdown", "python" }, + settings = { + ToDoHyphen = false, + -- SentenceCapitalization = true, + -- SpellCheck = true, + isolateEnglish = true, + markdown = { + -- [ignores this part]() + -- [[ also ignores my marksman links ]] + IgnoreLinkTitle = true, + }, + }, + }) + end, ["jdtls"] = function() lspconfig.jdtls.setup({ capabilities = capabilities, @@ -190,23 +207,6 @@ return { -- }, }) end, - ["harper_ls"] = function() - lspconfig.harper_ls.setup({ - capabilities = capabilities, - filetypes = { "markdown", "python" }, - settings = { - ToDoHyphen = false, - -- SentenceCapitalization = true, - -- SpellCheck = true, - isolateEnglish = true, - markdown = { - -- [ignores this part]() - -- [[ also ignores my marksman links ]] - IgnoreLinkTitle = true, - }, - }, - }) - end, }, }) |
