mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-29 20:04:28 +02:00
treewide: Reformat with nixfmt
This commit is contained in:
parent
c6281260dc
commit
62f32bfc71
459 changed files with 28139 additions and 26377 deletions
|
@ -1,4 +1,5 @@
|
|||
{helpers, ...}: {
|
||||
{ helpers, ... }:
|
||||
{
|
||||
empty = {
|
||||
plugins.flash.enable = true;
|
||||
};
|
||||
|
@ -78,7 +79,12 @@
|
|||
config = null;
|
||||
prompt = {
|
||||
enabled = true;
|
||||
prefix = [["⚡" "FlashPromptIcon"]];
|
||||
prefix = [
|
||||
[
|
||||
"⚡"
|
||||
"FlashPromptIcon"
|
||||
]
|
||||
];
|
||||
winConfig = {
|
||||
relative = "editor";
|
||||
width = 1;
|
||||
|
@ -95,7 +101,9 @@
|
|||
modes = {
|
||||
search = {
|
||||
enabled = true;
|
||||
highlight = {backdrop = false;};
|
||||
highlight = {
|
||||
backdrop = false;
|
||||
};
|
||||
jump = {
|
||||
history = true;
|
||||
register = true;
|
||||
|
@ -124,8 +132,17 @@
|
|||
autohide = false;
|
||||
jumpLabels = false;
|
||||
multiLine = true;
|
||||
label = {exclude = "hjkliardc";};
|
||||
keys = helpers.listToUnkeyedAttrs ["f" "F" "t" "T" ";" ","];
|
||||
label = {
|
||||
exclude = "hjkliardc";
|
||||
};
|
||||
keys = helpers.listToUnkeyedAttrs [
|
||||
"f"
|
||||
"F"
|
||||
"t"
|
||||
"T"
|
||||
";"
|
||||
","
|
||||
];
|
||||
charActions = ''
|
||||
function(motion)
|
||||
return {
|
||||
|
@ -140,14 +157,24 @@
|
|||
}
|
||||
end
|
||||
'';
|
||||
search = {wrap = false;};
|
||||
highlight = {backdrop = true;};
|
||||
jump = {register = false;};
|
||||
search = {
|
||||
wrap = false;
|
||||
};
|
||||
highlight = {
|
||||
backdrop = true;
|
||||
};
|
||||
jump = {
|
||||
register = false;
|
||||
};
|
||||
};
|
||||
treesitter = {
|
||||
labels = "abcdefghijklmnopqrstuvwxyz";
|
||||
jump = {pos = "range";};
|
||||
search = {incremental = false;};
|
||||
jump = {
|
||||
pos = "range";
|
||||
};
|
||||
search = {
|
||||
incremental = false;
|
||||
};
|
||||
label = {
|
||||
before = true;
|
||||
after = true;
|
||||
|
@ -159,13 +186,17 @@
|
|||
};
|
||||
};
|
||||
treesitterSearch = {
|
||||
jump = {pos = "range";};
|
||||
jump = {
|
||||
pos = "range";
|
||||
};
|
||||
search = {
|
||||
multiWindow = true;
|
||||
wrap = true;
|
||||
incremental = false;
|
||||
};
|
||||
remoteOp = {restore = true;};
|
||||
remoteOp = {
|
||||
restore = true;
|
||||
};
|
||||
label = {
|
||||
before = true;
|
||||
after = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue