nvim/lua/custom/lsp/config/eslint.lua
Simon Lasbrugnas 4fabec4249
feat: cleanup config
Change folder architecture and separate all plugins into their own files
2024-11-09 20:37:37 +01:00

9 lines
186 B
Lua

return {
on_attach = function(_, bufnr)
-- Auto format with eslint fix all
vim.api.nvim_create_autocmd("BufWritePre", {
buffer = bufnr,
command = "EslintFixAll",
})
end,
}