home: vim: configure 'null-ls' for 'cpp'

This commit is contained in:
Bruno BELANYI 2022-02-25 13:07:31 +01:00
parent bb512cf838
commit 5947ec4217

View file

@ -0,0 +1,10 @@
" Create the `b:undo_ftplugin` variable if it doesn't exist
call ftplugined#check_undo_ft()
" Set-up LSP, linters, formatters
lua << EOF
local null_ls = require("null-ls")
null_ls.register({
null_ls.builtins.formatting.clang_format,
})
EOF