Files
nvbad/lua/plugins/format.lua
2026-02-06 14:29:42 -06:00

33 lines
515 B
Lua

return {
{
'windwp/nvim-autopairs',
event = "InsertEnter",
config = true
},
{
"folke/ts-comments.nvim",
event = "VeryLazy",
opts = {},
},
{
"hrsh7th/nvim-cmp",
},
{
'stevearc/conform.nvim',
opts = {
formatters_by_ft = {
lua = { "stylua" },
},
default_format_opts = {
lsp_format = "fallback",
},
format_on_save = { timeout_ms = 500 },
formatters = {
shfmt = {
append_args = { "-i", "2" },
},
},
},
}
}