- During build time multiple warnings were shown about the deprecation of certain options. These have been moved to their new places. - Disable the CMP Ghost Text option because it was driving me nuts.
40 lines
880 B
Nix
40 lines
880 B
Nix
_: {
|
|
plugins.navic = {
|
|
enable = true;
|
|
settings = {
|
|
separator = " ";
|
|
highlight = true;
|
|
depthLimit = 5;
|
|
lsp = {
|
|
autoAttach = true;
|
|
};
|
|
icons = {
|
|
Array = " ";
|
|
Boolean = " ";
|
|
Class = " ";
|
|
Constant = " ";
|
|
Constructor = " ";
|
|
Enum = " ";
|
|
EnumMember = " ";
|
|
Event = " ";
|
|
Field = " ";
|
|
File = " ";
|
|
Function = " ";
|
|
Interface = " ";
|
|
Key = " ";
|
|
Method = " ";
|
|
Module = " ";
|
|
Namespace = " ";
|
|
Null = " ";
|
|
Number = " ";
|
|
Object = " ";
|
|
Operator = " ";
|
|
Package = " ";
|
|
String = " ";
|
|
Struct = " ";
|
|
TypeParameter = " ";
|
|
Variable = " ";
|
|
};
|
|
};
|
|
};
|
|
}
|