debug bufferline due to update
This commit is contained in:
@@ -20,16 +20,20 @@ lspconfig.ansiblels.setup({
|
||||
})
|
||||
|
||||
mason_tool_installer.setup({
|
||||
ensure_installed = { "ansible-lint" },
|
||||
ensure_installed = {
|
||||
"ansible-lint",
|
||||
"prettier",
|
||||
},
|
||||
})
|
||||
|
||||
conform.setup({
|
||||
formatters_by_ft = {
|
||||
yaml = { "ansible-lint" },
|
||||
yaml = { "prettier" },
|
||||
yml = { "prettier" },
|
||||
},
|
||||
format_on_save = {
|
||||
async = false,
|
||||
timeout_ms = 500,
|
||||
timeout_ms = 2000,
|
||||
lsp_format = "fallback",
|
||||
},
|
||||
})
|
||||
@@ -43,6 +47,7 @@ vim.keymap.set({ "n", "v" }, "<leader>lf", function()
|
||||
end, { desc = "Format" })
|
||||
|
||||
lint.linters_by_ft = {
|
||||
yaml = { "ansible-lint" },
|
||||
yml = { "ansible-lint" },
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user