Skip to content
Open
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
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Install with your favorite plugin manager.
```lua
-- lua/plugins/jjui.lua
return {
"your-username/jjui.nvim",
"ReKylee/jjui.nvim",
dependencies = { "folke/snacks.nvim" },
-- `opts` will be passed to the setup function automatically
opts = {
Expand All @@ -44,13 +44,13 @@ return {
```Lua
-- lua/plugins.lua
use({
"your-username/jjui.nvim",
requires = { "folke/snacks.nvim" },
config = function()
require("jjui").setup({
-- your custom options here
})
end,
"ReKylee/jjui.nvim",
requires = { "folke/snacks.nvim" },
config = function()
require("jjui").setup({
-- your custom options here
})
end,
})
```

Expand Down