You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
945 B

  1. return {
  2. "stevearc/conform.nvim",
  3. event = { "BufReadPre", "BufNewFile" },
  4. config = function()
  5. local conform = require("conform")
  6. conform.setup({
  7. formatters_by_ft = {
  8. lua = { "stylua" },
  9. go = { "goimports", "gofmt" },
  10. javascript = { "prettierd" },
  11. typescript = { "prettierd" },
  12. vue = { "prettierd" },
  13. css = { "prettierd" },
  14. html = { "prettierd" },
  15. markdown = { "prettierd" },
  16. json = { "fixjson" },
  17. rust = { "rustfmt" },
  18. shell = { "shfmt", "shellcheck" },
  19. python = { "isort", "black" },
  20. php = { "phpcbf" },
  21. blade = { "blade-formatter" }
  22. },
  23. log_level = vim.log.levels.WARN,
  24. notify_on_error = false,
  25. })
  26. vim.keymap.set({ "n", "v" }, "<leader>F", function()
  27. conform.format({
  28. lsp_fallback = true,
  29. async = false,
  30. timeout_ms = 500,
  31. })
  32. end)
  33. conform.formatters.phpcbf = {
  34. prepend_args = { "--standard=~/.config/phpcs.xml" },
  35. }
  36. end,
  37. }