-
Notifications
You must be signed in to change notification settings - Fork 263
nvim lspconfig
Fangrui Song edited this page Jan 9, 2021
·
3 revisions
Install nvim-lspconfig according to the instructions in its README.
https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/ccls.lua has a built-in rule for ccls. You can customize initialization options with:
local lspconfig = require'lspconfig'
lspconfig.ccls.setup {
init_options = {
cache = {
directory = ".ccls-cache";
};
}
}