Skip to content

Commit 7c9e632

Browse files
chore: auto-generate vimdoc
1 parent 2350f3f commit 7c9e632

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

doc/gp.nvim.txt

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ Snippets for your preferred package manager:
8686
{
8787
"robitx/gp.nvim",
8888
config = function()
89-
require("gp").setup()
89+
local conf = {
90+
-- For customization, refer to Install > Configuration in the Documentation/Readme
91+
}
92+
require("gp").setup(conf)
9093

91-
-- or setup with your own config (see Install > Configuration in Readme)
92-
-- require("gp").setup(config)
93-
94-
-- shortcuts might be setup here (see Usage > Shortcuts in Readme)
94+
-- Setup shortcuts here (see Usage > Shortcuts in the Documentation/Readme)
9595
end,
9696
}
9797
<
@@ -101,12 +101,12 @@ Snippets for your preferred package manager:
101101
use({
102102
"robitx/gp.nvim",
103103
config = function()
104-
require("gp").setup()
105-
106-
-- or setup with your own config (see Install > Configuration in Readme)
107-
-- require("gp").setup(config)
104+
local conf = {
105+
-- For customization, refer to Install > Configuration in the Documentation/Readme
106+
}
107+
require("gp").setup(conf)
108108

109-
-- shortcuts might be setup here (see Usage > Shortcuts in Readme)
109+
-- Setup shortcuts here (see Usage > Shortcuts in the Documentation/Readme)
110110
end,
111111
})
112112
<
@@ -115,12 +115,12 @@ Snippets for your preferred package manager:
115115
-- vim-plug
116116
Plug 'robitx/gp.nvim'
117117

118-
require("gp").setup()
119-
120-
-- or setup with your own config (see Install > Configuration in Readme)
121-
-- require("gp").setup(config)
118+
local conf = {
119+
-- For customization, refer to Install > Configuration in the Documentation/Readme
120+
}
121+
require("gp").setup(conf)
122122

123-
-- shortcuts might be setup here (see Usage > Shortcuts in Readme)
123+
-- Setup shortcuts here (see Usage > Shortcuts in the Documentation/Readme)
124124
<
125125

126126

0 commit comments

Comments
 (0)