Skip to content

Commit 36351d8

Browse files
committed
fix(README): use a consistent coding style in packer example
1 parent 018be22 commit 36351d8

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -53,23 +53,23 @@ have to leave Neovim!
5353

5454
```lua
5555
use {
56-
'NTBBloodbath/rest.nvim',
57-
requires = { 'nvim-lua/plenary.nvim' },
58-
config = function()
59-
require("rest-nvim").setup({
60-
-- Open request results in a horizontal split
61-
result_split_horizontal = false,
62-
-- Skip SSL verification, useful for unknown certificates
63-
skip_ssl_verification = false,
64-
-- Highlight request on run
65-
highlight = {
66-
enabled = true,
67-
timeout = 150,
68-
},
69-
-- Jump to request line on run
70-
jump_to_request = false,
71-
})
72-
end
56+
"NTBBloodbath/rest.nvim",
57+
requires = { "nvim-lua/plenary.nvim" },
58+
config = function()
59+
require("rest-nvim").setup({
60+
-- Open request results in a horizontal split
61+
result_split_horizontal = false,
62+
-- Skip SSL verification, useful for unknown certificates
63+
skip_ssl_verification = false,
64+
-- Highlight request on run
65+
highlight = {
66+
enabled = true,
67+
timeout = 150,
68+
},
69+
-- Jump to request line on run
70+
jump_to_request = false,
71+
})
72+
end
7373
}
7474
```
7575

0 commit comments

Comments
 (0)