diff --git a/lua/linterconfiguration.lua b/lua/linterconfiguration.lua index 2bc291c..3a3cd9d 100644 --- a/lua/linterconfiguration.lua +++ b/lua/linterconfiguration.lua @@ -1,16 +1,16 @@ -- Ale configuration vim.g.ale_linters_explicit = 0 local linters = { - python = { "pylint" }, - vim = { "vint" }, - cpp = { "clang" }, - c = { "clang" }, - markdown = { "languagetool" }, - latex = { "proselint" }, - tex = { "proselint" }, - plaintex = { "proselint" }, ada = { "gnat", "gcc", "adals", "cspell" }, + c = { "clang" }, + cpp = { "clang" }, + latex = { "proselint" }, + markdown = { "languagetool" }, + plaintex = { "proselint" }, + python = { "pylint" }, + tex = { "proselint" }, vhdl = {}, + vim = { "vint" }, } local fixers = { @@ -18,15 +18,16 @@ local fixers = { asm = { "gcc" }, bash = { "bashate" }, c = { "astyle" }, + haskell = { "fourmolu" }, + html = { "prettier", "html-beautify" }, latex = { "texlab", "textlint" }, - tex = { "textlint" }, lua = { "stylua" }, markdown = { "prettier", "pandoc" }, - python = { "yapf" }, + nix = { "nixfmt" }, pascal = { "ptop" }, - haskell = { "fourmolu" }, + python = { "yapf", "ruff", "autopep8" }, rust = { "rustfmt" }, - html = { "prettier", "html-beautify" }, + tex = { "textlint", "latexindent" }, } vim.g.ale_linters = linters