Skip to content

Commit 139b4c3

Browse files
docs: add lazy.nvim setup in README (#247)
1 parent 0d90bcf commit 139b4c3

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,21 @@ use {
102102
}
103103
```
104104

105+
### [lazy.nvim](https://github.com/folke/lazy.nvim)
106+
107+
```lua
108+
-- plugins/rest.lua
109+
return {
110+
"rest-nvim/rest.nvim",
111+
dependencies = { { "nvim-lua/plenary.nvim" } },
112+
config = function()
113+
require("rest-nvim").setup({
114+
--- Get the same options from Packer setup
115+
})
116+
end
117+
}
118+
```
119+
105120
### Tree-Sitter parser
106121

107122
We are using a Tree-Sitter parser for our HTTP files, in order to get the correct syntax highlighting

0 commit comments

Comments
 (0)