flake.lock: update nix2lua

This commit is contained in:
Dmitriy Pleshevskiy 2024-02-28 17:02:50 +03:00
parent 9d34036273
commit 1f5cec136d
Signed by: pleshevskiy
GPG Key ID: 17041163DA10A9A2
2 changed files with 13 additions and 10 deletions

View File

@ -388,11 +388,11 @@
"theme": "theme" "theme": "theme"
}, },
"locked": { "locked": {
"lastModified": 1701345648, "lastModified": 1709128630,
"narHash": "sha256-Ta/5S6suVBUsgxY4hRWuQCYkOWi0V4bquVsKHkMQn1I=", "narHash": "sha256-Lfgfy/EWEmO9X1nkR8gG51FmLVTPh9M9IDCpviyINQY=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "542364e035e3c6fd859df3b527ecbfaf24f0c29d", "rev": "d280679b1498f9082ba12b2c65adbf16ea23c557",
"revCount": 112, "revCount": 114,
"type": "git", "type": "git",
"url": "https://git.pleshevski.ru/mynix/neovim" "url": "https://git.pleshevski.ru/mynix/neovim"
}, },
@ -443,11 +443,11 @@
}, },
"nix2lua": { "nix2lua": {
"locked": { "locked": {
"lastModified": 1669103494, "lastModified": 1709128456,
"narHash": "sha256-jEu9VyOfTMbSITGiG329vEC6K7ZNppfhd0LojxMhzK8=", "narHash": "sha256-tRduS+XFI6VceWPQzjkuvlyn/Oe5NsQUS/wyEC69dvk=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "32b5ab313597df18a81a85af67c5e1380fd4f688", "rev": "f152767145e61fea96eddb1b550ab3f25701e0ad",
"revCount": 13, "revCount": 18,
"type": "git", "type": "git",
"url": "https://git.pleshevski.ru/mynix/nix2lua" "url": "https://git.pleshevski.ru/mynix/nix2lua"
}, },

View File

@ -30,7 +30,10 @@ let
extensions.live_grep_args = { extensions.live_grep_args = {
auto_quoting = true; auto_quoting = true;
mappings.i = { mappings.i = {
"<C-K>" = mkLuaRaw "require('telescope-live-grep-args.actions').quote_prompt()"; "<C-K>" = join "." [
(mkCall "require" [ "telescope-live-grep-args.actions" ])
(mkCall "quote_prompt" [ ])
];
}; };
}; };
}; };
@ -54,7 +57,7 @@ let
}; };
}; };
denols = { denols = {
root_dir = mkLuaRaw "root_pattern(\"deno.json\", \"deno.jsonc\")"; root_dir = mkCall "root_pattern" [ "deno.json" "deno.jsonc" ];
}; };
rust_analyzer = { rust_analyzer = {
settings.rust-analyzer = { settings.rust-analyzer = {