summaryrefslogtreecommitdiff
path: root/lua/kickstart/plugins/autoformat.lua
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2023-06-04 02:44:33 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2023-06-04 02:44:33 -0600
commit523a7cc1b23b853007e200b73df8bc63b4339308 (patch)
tree298ad4a3738b0fa1992f6b4c19ab61ca19f8db3a /lua/kickstart/plugins/autoformat.lua
parent0b65026302b599ee83b8ba9ccc62c48ccb0a999e (diff)
merge(fix): changes from original repo (nvim-lua/kickstart.nvim@cdaa750c86cfc0c8f2fc1c8638b7296c327bf5a9)
Diffstat (limited to 'lua/kickstart/plugins/autoformat.lua')
-rw-r--r--lua/kickstart/plugins/autoformat.lua12
1 files changed, 1 insertions, 11 deletions
diff --git a/lua/kickstart/plugins/autoformat.lua b/lua/kickstart/plugins/autoformat.lua
index bc56b15..88bbd57 100644
--- a/lua/kickstart/plugins/autoformat.lua
+++ b/lua/kickstart/plugins/autoformat.lua
@@ -28,9 +28,6 @@ return {
return _augroups[client.id]
end
- -- Whenever an LSP attaches to a buffer, we will run this function.
- --
- -- See `:help LspAttach` for more information about this autocmd event.
vim.api.nvim_create_autocmd('LspAttach', {
group = vim.api.nvim_create_augroup('kickstart-lsp-attach-format', { clear = true }),
-- This is where we attach the autoformatting for reasonable clients
@@ -50,8 +47,6 @@ return {
return
end
- -- Create an autocmd that will run *before* we save the buffer.
- -- Run the formatting command for the LSP that has just attached.
vim.api.nvim_create_autocmd('BufWritePre', {
group = get_augroup(client),
buffer = bufnr,
@@ -60,12 +55,7 @@ return {
return
end
- vim.lsp.buf.format {
- async = false,
- filter = function(c)
- return c.id == client.id
- end,
- }
+ vim.lsp.buf.format({ async = false })
end,
})
end,