home: vim: configure 'null-ls' for 'cpp'
This commit is contained in:
parent
a59884b59c
commit
9a9e50f7a8
1 changed files with 10 additions and 0 deletions
10
home/vim/after/ftplugin/cpp.vim
Normal file
10
home/vim/after/ftplugin/cpp.vim
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue