chore(nvim): plugin cleanup

Signed-off-by: Ismo Vuorinen <ismo@ivuorinen.net>
This commit is contained in:
2025-07-18 17:10:38 +03:00
parent 9b94302270
commit 52a5f226e9
3 changed files with 18 additions and 41 deletions

View File

@@ -1,13 +1,18 @@
return {
{
'stevearc/conform.nvim',
event = 'BufWritePre',
event = { 'BufReadPre', 'BufNewFile' },
config = function()
local conform = require 'conform'
conform.setup {
formatters_by_ft = {
bash = { 'shfmt' },
go = { 'golangci-lint' },
lua = { 'stylua' },
sh = { 'shfmt' },
ansible = { 'ansible-lint' },
docker = { 'hadolint' },
},
format_on_save = function(bufnr)
-- Disable autoformat for files in a certain paths
@@ -20,6 +25,7 @@ return {
}
return {
lsp_fallback = not disable_lsp[vim.bo[bufnr].filetype],
async = false,
timeout_ms = 500,
}
end,
@@ -63,4 +69,8 @@ return {
end
end,
},
{
'gpanders/editorconfig.nvim',
lazy = false,
},
}