mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-23 17:28:50 +02:00
update
This commit is contained in:
parent
da02b7279c
commit
ba79f479ef
8 changed files with 202 additions and 2 deletions
16
lua/plugin_custom/clangd.lua
Normal file
16
lua/plugin_custom/clangd.lua
Normal file
|
@ -0,0 +1,16 @@
|
|||
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,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue