From 326ea461a60998ec0a6094cccdc03bbb438e8fa3 Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Fri, 21 Mar 2025 16:59:52 +0200 Subject: [PATCH] docs: update --- doc/gopher.nvim.txt | 4 ++++ lua/gopher/config.lua | 2 ++ 2 files changed, 6 insertions(+) diff --git a/doc/gopher.nvim.txt b/doc/gopher.nvim.txt index a266fc9..1ad1cb5 100644 --- a/doc/gopher.nvim.txt +++ b/doc/gopher.nvim.txt @@ -61,6 +61,10 @@ You can look at default options |gopher.nvim-config-defaults| ---@type number timeout = 2000, + --- whether to setup plugin commands or not + ---@type boolean + setup_commands = true, + -- user specified paths to binaries ---@class gopher.ConfigCommand commands = { diff --git a/lua/gopher/config.lua b/lua/gopher/config.lua index 0f9db8b..f5ea7ba 100644 --- a/lua/gopher/config.lua +++ b/lua/gopher/config.lua @@ -37,6 +37,7 @@ local default_config = { ---@type number timeout = 2000, + --- whether to setup plugin commands or not ---@type boolean setup_commands = true, @@ -106,4 +107,5 @@ setmetatable(config, { }) ---@return gopher.Config +---@private return config