We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0049aca commit a63b826Copy full SHA for a63b826
tests/test-sources/plugins/by-name/lspkind/default.nix
@@ -1,6 +1,9 @@
1
{
2
empty = {
3
- plugins.lspkind.enable = true;
+ plugins.lspkind = {
4
+ enable = true;
5
+ cmp.enable = false;
6
+ };
7
};
8
9
example = {
@@ -17,14 +20,13 @@
17
20
defaults = {
18
21
plugins.lspkind = {
19
22
enable = true;
- mode = "symbol_text";
- preset = "codicons";
- symbolMap = null;
23
+ settings = {
24
+ mode = "symbol_text";
25
+ preset = "codicons";
26
+ symbol_map = null;
27
28
cmp = {
- enable = true;
- maxWidth = 50;
- ellipsisChar = "...";
- menu = null;
29
+ enable = false;
30
after = null;
31
32
0 commit comments