Start clangd from system path instead of absolute path

main
Michael Mandl 2019-11-21 20:38:30 +01:00
parent f20e5b5e19
commit 1aff0cc30d
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ nnoremap <F5> :call LanguageClient_contextMenu()<CR>
nnoremap <F12> :call LanguageClient#textDocument_definition()<CR>
let g:LanguageClient_serverCommands = {
\ 'python': ['pyls'],
\ 'cpp': ['/usr/lib/llvm-7/bin/clangd'],
\ 'cpp': ['clangd'],
\ }
" autoread/checktime timer {{{