A minimal Neovim plugin to open Lazygit in a floating terminal window.
- Opens Lazygit inside a centered floating terminal.
- Closes automatically when Lazygit exits.
- Lightweight — no dependencies.
- Configurable size and border.
Using lazy.nvim
{
"yourname/lazygit-float.nvim",
config = function()
require("lazygit-float").setup({
width = 0.9,
height = 0.9,
border = "rounded",
})
end
}