36 lines
1021 B
Lua
36 lines
1021 B
Lua
return {
|
|
'p00f/clangd_extensions.nvim',
|
|
dependencies = { 'microsoft/vscode-codicons' }, -- NOTE: for the ast icons
|
|
cmd = {
|
|
'ClangdSwitchSourceHeader',
|
|
'ClangdSetInlayHints',
|
|
'ClangdDisableInlayHints',
|
|
'ClangdToggleInlayHints',
|
|
'ClangdAST',
|
|
'ClangdSymbolInfo',
|
|
'ClangdTypeHierarchy',
|
|
'ClangdMemoryUsage',
|
|
},
|
|
opts = {
|
|
ast = {
|
|
role_icons = {
|
|
type = '',
|
|
declaration = '',
|
|
expression = '',
|
|
specifier = '',
|
|
statement = '',
|
|
['template argument'] = '',
|
|
},
|
|
kind_icons = {
|
|
Compound = '',
|
|
Recovery = '',
|
|
TranslationUnit = '',
|
|
PackExpansion = '',
|
|
TemplateTypeParm = '',
|
|
TemplateTemplateParm = '',
|
|
TemplateParamObject = '',
|
|
},
|
|
},
|
|
},
|
|
}
|