nvim formatting
This commit is contained in:
@@ -619,12 +619,7 @@ require('lazy').setup({
|
||||
vue = { hybridMode = true },
|
||||
},
|
||||
},
|
||||
eslint = {
|
||||
init_options = {
|
||||
filetypes = { 'javascript', 'javascriptreact', 'typescript', 'typescriptreact', 'vue' },
|
||||
format = { enable = true },
|
||||
},
|
||||
},
|
||||
eslint = {},
|
||||
--prettierd = {},
|
||||
-- TODO: end
|
||||
html = {},
|
||||
@@ -699,31 +694,44 @@ require('lazy').setup({
|
||||
desc = '[F]ormat buffer',
|
||||
},
|
||||
},
|
||||
opts = {
|
||||
notify_on_error = false,
|
||||
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 }
|
||||
if disable_filetypes[vim.bo[bufnr].filetype] then
|
||||
return nil
|
||||
else
|
||||
return {
|
||||
timeout_ms = 500,
|
||||
lsp_format = 'fallback',
|
||||
}
|
||||
end
|
||||
end,
|
||||
formatters_by_ft = {
|
||||
lua = { 'stylua' },
|
||||
-- Conform can also run multiple formatters sequentially
|
||||
-- python = { "isort", "black" },
|
||||
--
|
||||
-- You can use 'stop_after_first' to run the first available formatter from the list
|
||||
javascript = { 'prettierd' },
|
||||
},
|
||||
},
|
||||
config = function()
|
||||
local conform = require('conform').setup {
|
||||
notify_on_error = false,
|
||||
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 }
|
||||
if disable_filetypes[vim.bo[bufnr].filetype] then
|
||||
return nil
|
||||
else
|
||||
return {
|
||||
timeout_ms = 500,
|
||||
lsp_format = 'fallback',
|
||||
}
|
||||
end
|
||||
end,
|
||||
formatters_by_ft = {
|
||||
lua = { 'stylua' },
|
||||
-- Conform can also run multiple formatters sequentially
|
||||
-- python = { "isort", "black" },
|
||||
--
|
||||
-- You can use 'stop_after_first' to run the first available formatter from the list
|
||||
javascript = {},
|
||||
typescript = {},
|
||||
vue = {},
|
||||
typescriptreact = {},
|
||||
javascriptreact = {},
|
||||
},
|
||||
}
|
||||
|
||||
vim.api.nvim_create_autocmd('BufWritePre', {
|
||||
pattern = '*',
|
||||
callback = function(args)
|
||||
require('conform').format { bufnr = args.buf, lsp_fallback = true }
|
||||
end,
|
||||
})
|
||||
end,
|
||||
},
|
||||
|
||||
{ -- Autocompletion
|
||||
|
||||
Reference in New Issue
Block a user