mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-03 12:19:26 +00:00
[neovim] Use conform plugin for auto formatting
This commit is contained in:
26
.config/nvim/lua/plugins/lsp/conform.lua
Normal file
26
.config/nvim/lua/plugins/lsp/conform.lua
Normal file
@ -0,0 +1,26 @@
|
||||
require("conform").setup({
|
||||
formatters_by_ft = {
|
||||
go = { "goimports", "gofumpt" },
|
||||
javascript = { "prettier" },
|
||||
json = { "prettier" },
|
||||
lua = { "stylua" },
|
||||
markdown = { "prettier" },
|
||||
python = { "isort", "black" },
|
||||
typescript = { "prettier" },
|
||||
yaml = { "prettier" },
|
||||
},
|
||||
formatters = {
|
||||
{
|
||||
command = "black",
|
||||
args = { "--line-length", "100" },
|
||||
},
|
||||
},
|
||||
format_on_save = function(bufnr)
|
||||
local filetypes = { "go", "typescript", "lua" }
|
||||
if not vim.tbl_contains(filetypes, vim.bo[bufnr].filetype) then
|
||||
return
|
||||
end
|
||||
|
||||
return { timeout_ms = 500, lsp_fallback = false }
|
||||
end,
|
||||
})
|
Reference in New Issue
Block a user