Gitui in your Neovim
- Neovim >= 0.5.0
- Gitui
use 'aspeddro/gitui.nvim'require("gitui").setup()Following are the default config for the setup(). If you want to override, just modify the option that you want then it will be merged with the default config.
{
  -- Command Options
  command = {
    -- Enable :Gitui command
    -- @type: bool
    enable = true,
  },
  -- Path to binary
  -- @type: string
  binary = "gitui",
  -- Argumens to gitui
  -- @type: table of string
  args = {},
  -- WIndow Options
  window = {
    options = {
      -- Width window in %
      -- @type: number
      width = 90,
      -- Height window in %
      -- @type: number
      height = 80,
      -- Border Style
      -- Enum: "none", "single", "rounded", "solid" or "shadow"
      -- @type: string
      border = "rounded",
    },
  },
}require("gitui").open()- Add documentation