luafied last commit
This commit is contained in:
parent
33547e0e06
commit
368b931dc8
1 changed files with 6 additions and 1 deletions
|
|
@ -19,4 +19,9 @@ vim.opt.expandtab = true
|
||||||
vim.opt.number = true
|
vim.opt.number = true
|
||||||
|
|
||||||
-- Use LSP to format bufer automatically just before write
|
-- Use LSP to format bufer automatically just before write
|
||||||
vim.cmd [[autocmd BufWritePre <buffer> lua vim.lsp.buf.format()]]
|
vim.api.nvim_create_autocmd("BufWritePre", {
|
||||||
|
buffer = buffer,
|
||||||
|
callback = function()
|
||||||
|
vim.lsp.buf.format { async = false }
|
||||||
|
end
|
||||||
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue