9 lines
224 B
Lua
9 lines
224 B
Lua
local M = {
|
|
toggle = function()
|
|
local Terminal = require("toggleterm.terminal").Terminal
|
|
local lazygit = Terminal:new { cmd = "lazygit", direction = 'float', hidden = true }
|
|
lazygit:toggle()
|
|
end,
|
|
}
|
|
|
|
return M
|