change formatting

This commit is contained in:
2024-03-03 03:25:37 +05:30
parent c452904baa
commit ea1a308252
5 changed files with 24 additions and 21 deletions

View File

@ -1,5 +1,5 @@
local augroup = vim.api.nvim_create_augroup("LspFormatting", {})
local null_ls = require "null-ls"
local null_ls = require("null-ls")
local b = null_ls.builtins
@ -14,16 +14,16 @@ local opts = {
b.diagnostics.deadnix,
},
on_attach = function(client, bufnr)
if client.supports_method "textDocument/formatting" then
vim.api.nvim_clear_autocmds {
if client.supports_method("textDocument/formatting") then
vim.api.nvim_clear_autocmds({
group = augroup,
buffer = bufnr,
}
})
vim.api.nvim_create_autocmd("BufWritePre", {
group = augroup,
buffer = bufnr,
callback = function()
vim.lsp.buf.format { bufnr = bufnr }
vim.lsp.buf.format({ bufnr = bufnr })
end,
})
end