feat: remove nvim-lint
I found this plugin caused more issues than solved, so I'm dropping it in favour of using the ESLint LSP server instead. "EslintFixAll" covers the majority of my bases it seems.
This commit is contained in:
parent
e21b539a40
commit
24d7d89b34
2 changed files with 8 additions and 30 deletions
|
@ -41,7 +41,14 @@ return {
|
|||
opts = {
|
||||
servers = {
|
||||
cssls = {},
|
||||
eslint = {},
|
||||
eslint = {
|
||||
on_attach = function(_, bufnr)
|
||||
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||
buffer = bufnr,
|
||||
command = "EslintFixAll",
|
||||
})
|
||||
end,
|
||||
},
|
||||
html = {},
|
||||
lua_ls = {},
|
||||
taplo = {},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue