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:
Marty Oehme 2024-06-17 14:32:24 +02:00
parent b4a9b5179f
commit 2d513ad74b
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A
2 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ require("lazy").setup({
defaults = { lazy = true, version = "*" }, defaults = { lazy = true, version = "*" },
performance = { performance = {
rtp = { disabled_plugins = { "netrw", "netrwPlugin" } }, rtp = { disabled_plugins = { "netrw", "netrwPlugin" } },
cache = { enable = false }, cache = { enable = true },
}, },
}) })
vim.keymap.set("n", "<leader>vl", ":Lazy<cr>", { desc = "Lazy" }) vim.keymap.set("n", "<leader>vl", ":Lazy<cr>", { desc = "Lazy" })

View file

@ -3,11 +3,11 @@ local linters = {
bash = { "shellcheck" }, bash = { "shellcheck" },
javascript = { "eslint_d" }, javascript = { "eslint_d" },
javascriptreact = { "eslint_d" }, javascriptreact = { "eslint_d" },
markdown = { "markdownlint", "vale" }, markdown = { "markdownlint" },
quarto = { "markdownlint", "vale" }, quarto = { "markdownlint" },
sh = { "shellcheck" }, sh = { "shellcheck" },
svelte = { "eslint_d" }, svelte = { "eslint_d" },
text = { "vale" }, text = {},
typescript = { "eslint_d" }, typescript = { "eslint_d" },
typescriptreact = { "eslint_d" }, typescriptreact = { "eslint_d" },
} }