docs: update

This commit is contained in:
Oleksandr Smirnov 2025-03-21 16:59:52 +02:00
parent eeff227715
commit 326ea461a6
No known key found for this signature in database
2 changed files with 6 additions and 0 deletions

View file

@ -61,6 +61,10 @@ You can look at default options |gopher.nvim-config-defaults|
---@type number ---@type number
timeout = 2000, timeout = 2000,
--- whether to setup plugin commands or not
---@type boolean
setup_commands = true,
-- user specified paths to binaries -- user specified paths to binaries
---@class gopher.ConfigCommand ---@class gopher.ConfigCommand
commands = { commands = {

View file

@ -37,6 +37,7 @@ local default_config = {
---@type number ---@type number
timeout = 2000, timeout = 2000,
--- whether to setup plugin commands or not
---@type boolean ---@type boolean
setup_commands = true, setup_commands = true,
@ -106,4 +107,5 @@ setmetatable(config, {
}) })
---@return gopher.Config ---@return gopher.Config
---@private
return config return config