1
Fork 0
dotfiles/.config/nvim/coc-settings.json

55 lines
1.2 KiB
JSON

{
"suggest.noselect": false,
"codeLens.enable": true,
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": [
"c",
"cpp",
"objc",
"objcpp"
],
"rootPatterns": [
".ccls",
"compile_commands.json",
".vim/",
".git/",
".hg/"
],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
},
"highlight": { "lsRanges" : true },
"clang": {
"resourceDir": "/Library/Developer/CommandLineTools/usr/lib/clang/11.0.3",
"extraArgs": [
"-I",
"/Users/64001707/Documents/Programming/cpp/include",
"-I",
"/Library/Developer/CommandLineTools/usr/include/c++/v1",
"-std=c++17"
]
}
}
}
},
"clangd.semanticHighlighting": true,
"rust-analyzer.updates.checkOnStartup": false,
"cSpell.userWords": [
"Minecraft",
"Odometry",
"Vulkan",
"endianness",
"repr",
"setpoint",
"tpope",
"ultigrep",
"wgpu"
],
"cSpell.ignoreWords": [
"deque"
]
}