Skip to content

Commit

Permalink
docs: add lazy.nvim setup in README
Browse files Browse the repository at this point in the history
  • Loading branch information
christianascone committed Oct 27, 2023
1 parent 5bcaa10 commit d686210
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,21 @@ use {
}
```

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

```lua
-- plugins/rest.lua
return {
"rest-nvim/rest.nvim",
dependencies = { { "nvim-lua/plenary.nvim" } },
config = function()
require("rest-nvim").setup({
--- Get the same options from Packer setup
})
end
}
```

### Tree-Sitter parser

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

0 comments on commit d686210

Please sign in to comment.