Compare commits
No commits in common. "db3d26e6876f85002c9944e3fb0701fe1d66a772" and "a8d753d0ec2988528b054863915a4977553e8c96" have entirely different histories.
db3d26e687
...
a8d753d0ec
3 changed files with 27 additions and 38 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib.mod) ctrl;
|
inherit (lib.mod) ctrl;
|
||||||
inherit (lib.nix2lua) pipe1 require call call0 nf var;
|
inherit (lib.nix2lua) pipe1 require call call0;
|
||||||
|
|
||||||
mkLineLimiterGroup = { limit, pattern }:
|
mkLineLimiterGroup = { limit, pattern }:
|
||||||
lib.nameValuePair
|
lib.nameValuePair
|
||||||
|
@ -149,15 +149,4 @@ in
|
||||||
root_dir = call "${config.plugin.nvim-lspconfig.varName}.util.root_pattern" [ "deno.json" "deno.jsonc" ];
|
root_dir = call "${config.plugin.nvim-lspconfig.varName}.util.root_pattern" [ "deno.json" "deno.jsonc" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
plugins.snippet.luasnip.settings = {
|
|
||||||
ext_opts = [
|
|
||||||
(nf (var "luasnip_types.choiceNode") {
|
|
||||||
active.virt_text = [ [ "●" "WarningMsg" ] ];
|
|
||||||
})
|
|
||||||
(nf (var "luasnip_types.insertNode") {
|
|
||||||
active.virt_text = [ [ "●" "Title" ] ];
|
|
||||||
})
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,35 +12,35 @@
|
||||||
{ jump = 2; text = "trueBody"; }
|
{ jump = 2; text = "trueBody"; }
|
||||||
{ text = " else "; }
|
{ text = " else "; }
|
||||||
{ jump = 3; text = "falseBody"; }
|
{ jump = 3; text = "falseBody"; }
|
||||||
{ jump = 0; }
|
|
||||||
];
|
|
||||||
|
|
||||||
"inherit".nodes = [
|
|
||||||
{ text = "inherit "; }
|
|
||||||
{
|
|
||||||
jump = 1;
|
|
||||||
choices = [
|
|
||||||
{
|
|
||||||
nodes = [
|
|
||||||
{ text = "("; }
|
|
||||||
{ jump = 1; text = "lib"; }
|
|
||||||
{ text = ") "; }
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ text = ""; }
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{ jump = 2; text = "filter"; }
|
|
||||||
{ text = ";"; }
|
{ text = ";"; }
|
||||||
{ jump = 0; }
|
|
||||||
];
|
];
|
||||||
|
|
||||||
"var".nodes = [
|
"var".nodes = [
|
||||||
{ jump = 1; text = "name"; }
|
{ jump = 1; text = "name"; }
|
||||||
{ text = " = "; }
|
{ text = " = "; }
|
||||||
{ jump = 2; text = "value"; }
|
{
|
||||||
|
jump = 2;
|
||||||
|
choices = [
|
||||||
|
{ kind = "insert"; text = "value"; }
|
||||||
|
{
|
||||||
|
nodes = [
|
||||||
|
{ jump = 1; }
|
||||||
|
{ text = "["; }
|
||||||
|
{ jump = 2; }
|
||||||
|
{ text = "]"; }
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
nodes = [
|
||||||
|
{ jump = 1; }
|
||||||
|
{ text = "{"; }
|
||||||
|
{ jump = 2; }
|
||||||
|
{ text = "}"; }
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
{ text = ";"; }
|
{ text = ";"; }
|
||||||
{ jump = 0; }
|
|
||||||
];
|
];
|
||||||
|
|
||||||
"module".nodes = [
|
"module".nodes = [
|
||||||
|
@ -61,15 +61,17 @@
|
||||||
choices = [
|
choices = [
|
||||||
{
|
{
|
||||||
nodes = [
|
nodes = [
|
||||||
{ text = "let "; }
|
|
||||||
{ jump = 1; }
|
{ jump = 1; }
|
||||||
|
{ text = "let "; }
|
||||||
|
{ jump = 2; }
|
||||||
{ text = "in"; }
|
{ text = "in"; }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
nodes = [
|
nodes = [
|
||||||
|
{ jump = 1; }
|
||||||
{ text = "with "; }
|
{ text = "with "; }
|
||||||
{ jump = 1; text = "lib"; }
|
{ jump = 2; text = "lib"; }
|
||||||
{ text = ";"; }
|
{ text = ";"; }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -85,7 +87,6 @@
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
{ text = [ "" "}" ]; }
|
{ text = [ "" "}" ]; }
|
||||||
{ jump = 0; }
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -155,7 +155,6 @@
|
||||||
# tools
|
# tools
|
||||||
procs
|
procs
|
||||||
bottom
|
bottom
|
||||||
jq
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home.file = {
|
home.file = {
|
||||||
|
|
Loading…
Reference in a new issue