-- Lazygit Integration Lazygit = function() local buf = vim.api.nvim_create_buf(false, true) local opts = { relative = 'editor', width = 80, height = 20, row = 5, col = 5, style = 'minimal', border = 'rounded', } local win = vim.api.nvim_open_win(buf, true, opts) vim.cmd.terminal("lazygit") end