Skip to content

Commit

Permalink
feat: Add instructions for lazy.nvim.
Browse files Browse the repository at this point in the history
  • Loading branch information
DrKJeff16 committed Jul 6, 2024
1 parent 20f5f75 commit 22a9ce7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,26 @@ use({
})
```

- [lazy.nvim](https://github.com/folke/lazy.nvim)

```lua
require('lazy').setup({
spec = {
-- some optional icons
{ 'nvim-tree/nvim-web-devicons', lazy = true },
{
'glepnir/galaxyline.nvim',
branch = 'main',
-- your statusline
config = function()
require('my_statusline')
end,
},
-- Other plugins
},
})
```

## 🧭 Api

### Section Variables
Expand Down

0 comments on commit 22a9ce7

Please sign in to comment.