mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 08:53:28 +02:00
81 lines
1.5 KiB
Nix
81 lines
1.5 KiB
Nix
{
|
|
empty = {
|
|
plugins.precognition.enable = true;
|
|
};
|
|
|
|
default = {
|
|
plugins.precognition = {
|
|
enable = true;
|
|
settings = {
|
|
startVisible = true;
|
|
showBlankVirtLine = true;
|
|
highlightColor = {
|
|
link = "Comment";
|
|
};
|
|
hints = {
|
|
Caret = {
|
|
text = "^";
|
|
prio = 2;
|
|
};
|
|
Dollar = {
|
|
text = "$";
|
|
prio = 1;
|
|
};
|
|
MatchingPair = {
|
|
text = "%";
|
|
prio = 5;
|
|
};
|
|
Zero = {
|
|
text = "0";
|
|
prio = 1;
|
|
};
|
|
w = {
|
|
text = "w";
|
|
prio = 10;
|
|
};
|
|
b = {
|
|
text = "b";
|
|
prio = 9;
|
|
};
|
|
e = {
|
|
text = "e";
|
|
prio = 8;
|
|
};
|
|
W = {
|
|
text = "W";
|
|
prio = 7;
|
|
};
|
|
B = {
|
|
text = "B";
|
|
prio = 6;
|
|
};
|
|
E = {
|
|
text = "E";
|
|
prio = 5;
|
|
};
|
|
};
|
|
gutterHints = {
|
|
G = {
|
|
text = "G";
|
|
prio = 10;
|
|
};
|
|
gg = {
|
|
text = "gg";
|
|
prio = 9;
|
|
};
|
|
PrevParagraph = {
|
|
text = "{";
|
|
prio = 8;
|
|
};
|
|
NextParagraph = {
|
|
text = "}";
|
|
prio = 8;
|
|
};
|
|
};
|
|
disabled_fts = [
|
|
"startify"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|