mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/navic: migrate to mkNeovimPlugin
This commit is contained in:
parent
0d73ab939c
commit
279258294b
2 changed files with 89 additions and 85 deletions
|
@ -7,46 +7,48 @@
|
|||
plugins.navic = {
|
||||
enable = true;
|
||||
|
||||
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 = " ";
|
||||
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;
|
||||
};
|
||||
lsp = {
|
||||
autoAttach = true;
|
||||
preference = [
|
||||
"clangd"
|
||||
"pyright"
|
||||
];
|
||||
};
|
||||
highlight = true;
|
||||
separator = " | ";
|
||||
depthLimit = 10;
|
||||
safeOutput = false;
|
||||
click = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue