Skip to content

Commit

Permalink
conform: disable autoformat on save for specified filetypes (nvim-lua…
Browse files Browse the repository at this point in the history
…#694)

Provide a method to disable autoformat on save lsp fallback for
specified filetypes. By default disable for C/C++ as an example,
because it does not have a well standardized coding style.

Based on conform recipe:
https://github.com/stevearc/conform.nvim/blob/master/doc/recipes.md
  • Loading branch information
dam9000 authored and chrisdd2 committed Mar 24, 2024
1 parent 5108ade commit bd59ead
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -603,10 +603,16 @@ require('lazy').setup({
'stevearc/conform.nvim',
opts = {
notify_on_error = false,
format_on_save = {
timeout_ms = 500,
lsp_fallback = true,
},
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,
formatters_by_ft = {
lua = { 'stylua' },
-- Conform can also run multiple formatters sequentially
Expand Down

0 comments on commit bd59ead

Please sign in to comment.