Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Inspired by [hotwatermorning/auto-git-diff](https://github.com/hotwatermorning/a

## Installation

using `folke/lazy.nvim`

```lua
{
"yutkat/git-rebase-auto-diff.nvim",
ft = { "gitrebase" },
config = function()
require("git-rebase-auto-diff").setup()
end,
opts = {},
Comment on lines 15 to +17

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Consider adding a brief comment explaining what opts = {} is for, even if it's just a placeholder for future configurations. This can improve readability for users who are new to the plugin or lazy.nvim.

Suggested change
"yutkat/git-rebase-auto-diff.nvim",
ft = { "gitrebase" },
config = function()
require("git-rebase-auto-diff").setup()
end,
opts = {},
-- opts = {}, -- Placeholder for future configurations
opts = {},

}
```

Expand Down
Loading