惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
小众软件
小众软件
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
Jina AI
Jina AI
博客园 - 【当耐特】
V
Visual Studio Blog
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
量子位
IT之家
IT之家
G
Google Developers Blog
V
V2EX
The GitHub Blog
The GitHub Blog
月光博客
月光博客
GbyAI
GbyAI

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Set up for C++/C Development in Neovim
2020-04-19 · via jdhao's digital space

This post summarizes how to set up various plugins needed for C++/C code editing, linting and formatting.

Pre-requisite#

This post assumes that deoplete has been installed and set up properly on your system. If that is not the case, you may refer to this post on how to do it.

Install clang and llvm#

To enable C++/C code auto-completion, we need to install clang first.

Linux#

On Linux, we can build the latest clang from source using the following command:

git clone --depth=1 https://github.com/llvm/llvm-project.git
cd llvm-project
mkdir build && cd build
cmake -DLLVM_ENABLE_PROJECTS=clang -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release  ../llvm
make -j$(nproc)

The flag -DCMAKE_BUILD_TYPE=Release will build a release version of clang, which is much smaller than the default one (Debug type).

The build process will take about half of an hour on our 12-core server, and the time may vary depending on your hardware.

After that, we need to add the clang binary path to the PATH variable, and add the directory containing libclang.so to env variable LD_LIBRARY_PATH. Edit ~/.bash_profile and add following settings:

export PATH="$HOME/tools/llvm-project/build/bin:$PATH"
export LD_LIBRARY_PATH="$HOME/tools/llvm-project/build/lib:$LD_LIBRARY_PATH"

Under directory $HOME/tools/llvm-project/build/bin, there are a lot of executables, including clang, clang++, and clang-format (which we will use to format C++/C code later).

Do not forget to source the file to refresh the env variables.

macOS#

For macOS, clang is shipped with it so we do not need to install clang. We need to install clang-format though since clang-format is not shipped with clang by default (source here).

The easiest way to install clang-format is via Homebrew:

brew install clang-format

On Mac, the name of the clang share library is libclang.dylib, and we should add its parent directory to env variable LD_LIBRARY_PATH1:

export LD_LIBRARY_PATH="/Library/Developer/CommandLineTools/usr/lib/:$LD_LIBRARY_PATH"

Auto-completion#

To provide C++/C code autocompletion, we can use deoplete-clang:

" Install using vim-plug
Plug 'deoplete-plugins/deoplete-clang'

If you have set up the libclang path properly, then auto-completion should work when you start editing C++/C source files.

Linting#

For code linting, we can use ale. Add the following setting to Neovim config:

let g:ale_linters = {
    \ 'python': ['pylint'],
    \ 'vim': ['vint'],
    \ 'cpp': ['clang'],
    \ 'c': ['clang']
\}

Code formatting#

We can use the command line tool clang-format shipped with clang for code formatting, with the help of pluign Neoformat to format our code. Make sure that clang-format is on your PATH. Add the following settings to Neovim config:

" custom setting for clangformat
let g:neoformat_cpp_clangformat = {
    \ 'exe': 'clang-format',
    \ 'args': ['--style="{IndentWidth: 4}"']
\}
let g:neoformat_enabled_cpp = ['clangformat']
let g:neoformat_enabled_c = ['clangformat']

Notice that the linter name for clang-format is clangformat, not clang-format. I have wasted ten minutes trying to find why clang-format does not with Neoformat until I found here that we should use clangformat as the linter name.

References#