Files
nvbad/lua/plugins/format.lua
2026-02-20 14:02:30 -06:00

36 lines
630 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" },
yml = { "yamlfmt" },
yaml = { "yamlfmt" },
nix = { "nixfmt" },
},
default_format_opts = {
lsp_format = "fallback",
},
format_on_save = { timeout_ms = 500 },
formatters = {
shfmt = {
append_args = { "-i", "2" },
},
},
},
},
}