1
1
mirror of https://github.com/codota/TabNine.git synced 2024-08-16 21:40:23 +03:00

Fix #161 use clangd instead

This commit is contained in:
Shougo Matsushita 2019-09-27 07:33:02 +09:00
parent d9eb2a58a9
commit 402b38ec9b

View File

@ -29,9 +29,13 @@ install = [["npm", "install", "-g", "ocaml-language-server"]]
command = "pyls"
install = [["pip", "install", "python-language-server"]]
[language.c]
command = "clangd"
args = []
[language.cpp]
command = "cquery"
args = ["--init={\"cacheDirectory\": \"${project_root}/.cquery_cache\"}"]
command = "clangd"
args = []
[language.haskell]
command = "hie"