refactor(nvim): use nix eval
to run nix files
This commit is contained in:
parent
d3527d9708
commit
651359a54b
@ -7,9 +7,9 @@ vim.api.nvim_buf_set_option(0, "commentstring", "# %s")
|
|||||||
|
|
||||||
vim.keymap.set("n", "<leader>fr", function()
|
vim.keymap.set("n", "<leader>fr", function()
|
||||||
local cmd = {
|
local cmd = {
|
||||||
"nix-instantiate",
|
"nix",
|
||||||
"--eval",
|
"eval",
|
||||||
"--strict",
|
"--file",
|
||||||
vim.api.nvim_buf_get_name(0),
|
vim.api.nvim_buf_get_name(0),
|
||||||
}
|
}
|
||||||
require("toggleterm").exec(table.concat(cmd, " "))
|
require("toggleterm").exec(table.concat(cmd, " "))
|
||||||
@ -20,10 +20,10 @@ end, {
|
|||||||
|
|
||||||
vim.keymap.set("n", "<leader>fj", function()
|
vim.keymap.set("n", "<leader>fj", function()
|
||||||
local cmd = {
|
local cmd = {
|
||||||
"nix-instantiate",
|
"nix",
|
||||||
"--eval",
|
"eval",
|
||||||
"--strict",
|
|
||||||
"--json",
|
"--json",
|
||||||
|
"--file",
|
||||||
vim.api.nvim_buf_get_name(0),
|
vim.api.nvim_buf_get_name(0),
|
||||||
"|",
|
"|",
|
||||||
"jq",
|
"jq",
|
||||||
|
Loading…
Reference in New Issue
Block a user