added Clangd format_on_save (#621)

* clang autoformat do save lot of trouble

* clang autoformat do save lot of trouble

* clang indentation done, comments updated

* clang indentation done, comments updated

Co-authored-by: Mayank Sharma <info@Mayanks-MacBook-Air.local>
This commit is contained in:
Mayank Dutta 2021-07-04 02:43:57 +05:30 committed by GitHub
parent 049fd808d9
commit 7dc564c427
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 1 deletions

View file

@ -19,3 +19,13 @@ require'lspconfig'.clangd.setup {
})
}
}
if O.lang.clang.autoformat then
require('lv-utils').define_augroups({
_clang_autoformat = {
{
'BufWritePre *.cpp lua vim.lsp.buf.formatting_sync(nil,1000)'
}
} })
end