30 lines
714 B
Nix
30 lines
714 B
Nix
{...}: {
|
|
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 = "";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|