+7
doc/gopher.nvim.txt
+7
doc/gopher.nvim.txt
···
55
55
---@type number
56
56
log_level = vim.log.levels.INFO,
57
57
58
+
-- timeout for running commands
59
+
---@type number
60
+
timeout = 2000,
61
+
58
62
-- user specified paths to binaries
59
63
---@class gopher.ConfigCommand
60
64
commands = {
···
80
84
gotag = {
81
85
---@type gopher.ConfigGoTagTransform
82
86
transform = "snakecase",
87
+
88
+
-- default tags to add to struct fields
89
+
default_tag = "json",
83
90
},
84
91
}
85
92
<