Add clangd to coc

This commit is contained in:
Pavle Portic 2023-01-25 02:01:09 +01:00
parent 17905994c4
commit 98356519f0
Signed by: TheEdgeOfRage
GPG Key ID: 66AD4BA646FBC0D2
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
# vim: ft=zsh
# Function to load a podman image into a kind cluster
podman save -o /tmp/$1.tar $1
kind load image-archive /tmp/$1.tar
rm /tmp/$1.tar

View File

@ -284,5 +284,5 @@ function! UserConfig()
let g:NERDDefaultAlign = 'left'
" Coc extensions
let g:coc_global_extensions = ['coc-json', 'coc-pyright', 'coc-tsserver', 'coc-vetur', 'coc-go']
let g:coc_global_extensions = ['coc-json', 'coc-pyright', 'coc-go', 'coc-clangd']
endfunction