vim(coc.nvim) C++ 環境構築
Vim
(
coc.nvim
) で
C++
の開発環境を構築する
clangd
+
coc-clangd
を利用
clangd
のインストール
https://clangd.llvm.org/installation.html
mac
brew install llvm
で
LLVM
を入れる
pathを通す
export PATH="/usr/local/opt/llvm/bin:$PATH"
clangd --version
で確認
coc-clangd
のインストール
https://github.com/clangd/coc-clangd
CocInstall coc-clangd
coc-clangd
ではなく以下を追記でも動くらしい
code:.vim/coc-settings.json
"languageserver": {
"clangd": {
"command": "clangd",
"rootPatterns":
"compile_flags.txt", "compile_commands.json"
,
"filetypes":
"c", "cpp", "objc", "objcpp"
}
}
ref
https://github.com/neoclide/coc.nvim/wiki/Language-servers#ccobjective-c