2024-02-26 19:46:46 +00:00
|
|
|
return {
|
|
|
|
{ -- Autoformat
|
|
|
|
'stevearc/conform.nvim',
|
2024-04-01 08:02:30 +00:00
|
|
|
lazy = false,
|
2024-03-31 19:02:21 +00:00
|
|
|
keys = {
|
|
|
|
{
|
2024-05-02 11:25:23 +00:00
|
|
|
'<leader>fb',
|
2024-03-31 19:02:21 +00:00
|
|
|
function()
|
|
|
|
require('conform').format { async = true, lsp_fallback = true }
|
|
|
|
end,
|
|
|
|
mode = '',
|
2024-05-02 11:25:23 +00:00
|
|
|
desc = '[F]ormat [B]uffer',
|
2024-03-31 19:02:21 +00:00
|
|
|
},
|
|
|
|
},
|
2024-02-26 19:46:46 +00:00
|
|
|
opts = {
|
|
|
|
notify_on_error = false,
|
2024-03-15 21:10:28 +00:00
|
|
|
format_on_save = function(bufnr)
|
|
|
|
-- Disable "format_on_save lsp_fallback" for languages that don't
|
|
|
|
-- have a well standardized coding style. You can add additional
|
|
|
|
-- languages here or re-enable it for the disabled ones.
|
|
|
|
local disable_filetypes = { c = true, cpp = true }
|
|
|
|
return {
|
|
|
|
timeout_ms = 500,
|
|
|
|
lsp_fallback = not disable_filetypes[vim.bo[bufnr].filetype],
|
|
|
|
}
|
|
|
|
end,
|
2024-02-26 19:46:46 +00:00
|
|
|
formatters_by_ft = {
|
|
|
|
lua = { 'stylua' },
|
|
|
|
-- Conform can also run multiple formatters sequentially
|
|
|
|
-- python = { "isort", "black" },
|
|
|
|
--
|
|
|
|
-- You can use a sub-list to tell conform to run *until* a formatter
|
|
|
|
-- is found.
|
2024-03-01 08:15:22 +00:00
|
|
|
javascript = { { "prettierd", "prettier" } },
|
2024-02-26 19:46:46 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|