mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
17 lines
361 B
Lua
17 lines
361 B
Lua
|
return {
|
||
|
"p00f/clangd_extensions.nvim",
|
||
|
dependencies = { "mason-lspconfig.nvim" },
|
||
|
event = "BufRead",
|
||
|
config = function()
|
||
|
require("clangd_extensions").setup({
|
||
|
server = {
|
||
|
on_attach = require("user.lsp.handlers").on_attach,
|
||
|
capabilities = {
|
||
|
offsetEncoding = "utf-8",
|
||
|
require("user.lsp.handlers").capabilities,
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
end,
|
||
|
}
|