@@ -86,12 +86,12 @@ Snippets for your preferred package manager:
86
86
{
87
87
"robitx/gp.nvim",
88
88
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)
90
93
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)
95
95
end,
96
96
}
97
97
<
@@ -101,12 +101,12 @@ Snippets for your preferred package manager:
101
101
use({
102
102
"robitx/gp.nvim",
103
103
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 )
108
108
109
- -- shortcuts might be setup here (see Usage > Shortcuts in Readme)
109
+ -- Setup shortcuts here (see Usage > Shortcuts in the Documentation/ Readme)
110
110
end,
111
111
})
112
112
<
@@ -115,12 +115,12 @@ Snippets for your preferred package manager:
115
115
-- vim-plug
116
116
Plug 'robitx/gp.nvim'
117
117
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 )
122
122
123
- -- shortcuts might be setup here (see Usage > Shortcuts in Readme)
123
+ -- Setup shortcuts here (see Usage > Shortcuts in the Documentation/ Readme)
124
124
<
125
125
126
126
0 commit comments