AutoYADM commit: 2024-12-06 17:40:03

This commit is contained in:
Daniel Fichtinger 2024-12-06 17:40:03 -05:00
parent 68a022c146
commit fd27133def

View file

@ -1,6 +1,8 @@
vim.lsp.set_log_level("debug")
local harperSettings = { local harperSettings = {
fileDictPath = "/home/fic/.config/harper-ls/file_dictionaries/", fileDictPath = "/home/fic/.config/harper-ls/file_dictionaries/",
userDictPath = "/home/fic/.config/harper-ls/dictionary.txt", userDictPath = "/home/fic/.config/harper-ls/dictionary.txt",
diagnosticSeverity = "warning",
linters = { linters = {
spell_check = true, spell_check = true,
spelled_numbers = false, spelled_numbers = false,
@ -30,7 +32,9 @@ return {
filetypes = { filetypes = {
"markdown", "markdown",
}, },
settings = harperSettings, settings = {
["haper-ls"] = harperSettings,
},
}, },
}, },
}, },