35 lines
602 B
Lua
35 lines
602 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" },
|
|
},
|
|
default_format_opts = {
|
|
lsp_format = "fallback",
|
|
},
|
|
format_on_save = { timeout_ms = 500 },
|
|
formatters = {
|
|
shfmt = {
|
|
append_args = { "-i", "2" },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|