lazygit: remove lazygit config

This commit is contained in:
Tigor Hutasuhut 2024-11-07 20:15:23 +07:00
parent ebac538a83
commit 7cfd09db78
2 changed files with 0 additions and 35 deletions

View file

@ -6,10 +6,6 @@ require "config.neovide"
vim.keymap.set("t", "<c-d>", "<C-\\><C-n>", { silent = true, desc = "Exit Terminal Mode" }) vim.keymap.set("t", "<c-d>", "<C-\\><C-n>", { silent = true, desc = "Exit Terminal Mode" })
if vim.fn.executable "lazygit" == 1 then
require "config.lazygit"
end
if vim.env.HYPRLAND_INSTANCE_SIGNATURE ~= nil and vim.fn.executable "footclient" == 1 then if vim.env.HYPRLAND_INSTANCE_SIGNATURE ~= nil and vim.fn.executable "footclient" == 1 then
require "config.terminal" require "config.terminal"
end end

View file

@ -1,31 +0,0 @@
-- if vim.env.ZELLIJ ~= nil and not vim.g.neovide then
-- -- currently running inside zellij session and not inside neovide
-- vim.keymap.set("n", "<leader>z", function()
-- local cwd = vim.fn.expand "%:p:h"
-- vim.system {
-- "zellij",
-- "run",
-- "--close-on-exit",
-- "--cwd",
-- cwd,
-- "--in-place",
-- "--",
-- "lazygit",
-- }
-- end, { desc = "Open Lazygit (Zellij)" })
-- elseif vim.env.HYPRLAND_INSTANCE_SIGNATURE ~= nil and vim.fn.executable "foot" == 1 then
-- vim.keymap.set("n", "<leader>z", function()
-- vim.system {
-- "hyprctl",
-- "dispatch",
-- "exec",
-- "--",
-- "foot",
-- "--app-id=lazygit",
-- "--title=lazygit",
-- "--working-directory=" .. vim.fn.getcwd(),
-- "--",
-- "lazygit",
-- }
-- end, { desc = "Open Lazygit (Foot)" })
-- end