neovim/fw
This commit is contained in:
parent
8d5e0e6566
commit
c4f7a64329
16 changed files with 427 additions and 24 deletions
30
home-manager/modules/neovim/plugins/clangd-extensions.nix
Normal file
30
home-manager/modules/neovim/plugins/clangd-extensions.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{...}: {
|
||||
programs.nixvim = {
|
||||
plugins = {
|
||||
clangd-extensions = {
|
||||
enable = true;
|
||||
enableOffsetEncodingWorkaround = true;
|
||||
|
||||
ast = {
|
||||
roleIcons = {
|
||||
type = "";
|
||||
declaration = "";
|
||||
expression = "";
|
||||
specifier = "";
|
||||
statement = "";
|
||||
templateArgument = "";
|
||||
};
|
||||
kindIcons = {
|
||||
compound = "";
|
||||
recovery = "";
|
||||
translationUnit = "";
|
||||
packExpansion = "";
|
||||
templateTypeParm = "";
|
||||
templateTemplateParm = "";
|
||||
templateParamObject = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue