1

Modules/Neovim: Add ggalluvial R package

This commit is contained in:
2026-04-27 23:45:27 +02:00
parent c7098e2208
commit 024908500a
3 changed files with 21 additions and 0 deletions

View File

@ -66,3 +66,16 @@ local rmpc =
vim.g.toggle_rmpc = function()
rmpc:toggle()
end
-- Toggle FailNix UI
local failnix = Terminal:new({
cmd = "cd /home/christoph/Notes/TU/MastersThesis/FailNix && nix develop --command bash -c 'perl ./scripts/menu.pl'",
hidden = true,
close_on_exit = true,
auto_scroll = false,
direction = "float",
})
vim.g.toggle_failnix = function()
failnix:toggle()
end