aboutsummaryrefslogtreecommitdiff
path: root/nvim/.config/nvim/lua/plugins/clangd_extensions.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/.config/nvim/lua/plugins/clangd_extensions.lua')
-rw-r--r--nvim/.config/nvim/lua/plugins/clangd_extensions.lua33
1 files changed, 33 insertions, 0 deletions
diff --git a/nvim/.config/nvim/lua/plugins/clangd_extensions.lua b/nvim/.config/nvim/lua/plugins/clangd_extensions.lua
new file mode 100644
index 0000000..8eafd34
--- /dev/null
+++ b/nvim/.config/nvim/lua/plugins/clangd_extensions.lua
@@ -0,0 +1,33 @@
+require("clangd_extensions").setup {
+ ast = {
+ -- requires vscode fonticons
+ role_icons = {
+ type = "",
+ declaration = "",
+ expression = "",
+ specifier = "",
+ statement = "",
+ ["template argument"] = "",
+ },
+
+ kind_icons = {
+ Compound = "",
+ Recovery = "",
+ TranslationUnit = "",
+ PackExpansion = "",
+ TemplateTypeParm = "",
+ TemplateTemplateParm = "",
+ TemplateParamObject = "",
+ },
+
+ highlights = {
+ detail = "Comment",
+ },
+ },
+ memory_usage = {
+ border = "none",
+ },
+ symbol_info = {
+ border = "none",
+ },
+}