We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lazy.nvim
1 parent 20f5f75 commit 22a9ce7Copy full SHA for 22a9ce7
1 file changed
README.md
@@ -74,6 +74,26 @@ use({
74
})
75
```
76
77
+- [lazy.nvim](https://github.com/folke/lazy.nvim)
78
+
79
+```lua
80
+require('lazy').setup({
81
+ spec = {
82
+ -- some optional icons
83
+ { 'nvim-tree/nvim-web-devicons', lazy = true },
84
+ {
85
+ 'glepnir/galaxyline.nvim',
86
+ branch = 'main',
87
+ -- your statusline
88
+ config = function()
89
+ require('my_statusline')
90
+ end,
91
+ },
92
+ -- Other plugins
93
94
+})
95
+```
96
97
## 🧭 Api
98
99
### Section Variables
0 commit comments