mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{
|
|
empty = {
|
|
plugins.navic.enable = true;
|
|
};
|
|
|
|
defaults = {
|
|
plugins.navic = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
icons = {
|
|
File = " ";
|
|
Module = " ";
|
|
Namespace = " ";
|
|
Package = " ";
|
|
Class = " ";
|
|
Method = " ";
|
|
Property = " ";
|
|
Field = " ";
|
|
Constructor = " ";
|
|
Enum = "";
|
|
Interface = "";
|
|
Function = " ";
|
|
Variable = " ";
|
|
Constant = " ";
|
|
String = " ";
|
|
Number = " ";
|
|
Boolean = "◩ ";
|
|
Array = " ";
|
|
Object = " ";
|
|
Key = " ";
|
|
Null = " ";
|
|
EnumMember = " ";
|
|
Struct = " ";
|
|
Event = " ";
|
|
Operator = " ";
|
|
TypeParameter = " ";
|
|
};
|
|
lsp = {
|
|
auto_attach = true;
|
|
preference = [
|
|
"clangd"
|
|
"pyright"
|
|
];
|
|
};
|
|
highlight = true;
|
|
separator = " | ";
|
|
depth_limit = 10;
|
|
safe_output = false;
|
|
click = true;
|
|
};
|
|
};
|
|
};
|
|
}
|