nvim: Remove vale linter
It does not work right. I tried to set up the lsp instead, and that also is giving me more trouble than I can troubleshoot right now.
This commit is contained in:
parent
b4a9b5179f
commit
2d513ad74b
2 changed files with 4 additions and 4 deletions
|
@ -36,7 +36,7 @@ require("lazy").setup({
|
|||
defaults = { lazy = true, version = "*" },
|
||||
performance = {
|
||||
rtp = { disabled_plugins = { "netrw", "netrwPlugin" } },
|
||||
cache = { enable = false },
|
||||
cache = { enable = true },
|
||||
},
|
||||
})
|
||||
vim.keymap.set("n", "<leader>vl", ":Lazy<cr>", { desc = "Lazy" })
|
||||
|
|
|
@ -3,11 +3,11 @@ local linters = {
|
|||
bash = { "shellcheck" },
|
||||
javascript = { "eslint_d" },
|
||||
javascriptreact = { "eslint_d" },
|
||||
markdown = { "markdownlint", "vale" },
|
||||
quarto = { "markdownlint", "vale" },
|
||||
markdown = { "markdownlint" },
|
||||
quarto = { "markdownlint" },
|
||||
sh = { "shellcheck" },
|
||||
svelte = { "eslint_d" },
|
||||
text = { "vale" },
|
||||
text = {},
|
||||
typescript = { "eslint_d" },
|
||||
typescriptreact = { "eslint_d" },
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue