This commit is contained in:
MysterieDev 2024-04-19 10:16:45 +02:00
parent 5ca867e7e5
commit b2223d2aa4
4 changed files with 83 additions and 18 deletions

View file

@ -0,0 +1,20 @@
return {
'dense-analysis/ale',
config = function()
-- Configuration goes here.
local g = vim.g
g.ale_fixers = {
typescript = { 'prettier_d' },
html = { 'prettier_d' },
javascript = { 'prettier_d' },
typescriptreact = { 'prettier_d' },
}
g.ale_linters = {
lua = { 'lua_language_server' },
javascript = { 'eslint' },
typescript = { 'eslint' },
typescriptreact = { 'eslint' },
html = {},
}
end,
}