diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go index 904b20141..a5f65165d 100644 --- a/pkg/config/user_config.go +++ b/pkg/config/user_config.go @@ -22,7 +22,6 @@ type UserConfig struct { // Config relating to things outside of Lazygit like how files are opened, copying to clipboard, etc OS OSConfig `yaml:"os,omitempty"` // If true, don't display introductory popups upon opening Lazygit. - // Lazygit sets this to true upon first runninng the program so that you don't see introductory popups every time you open the program. DisableStartupPopups bool `yaml:"disableStartupPopups"` // User-configured commands that can be invoked from within Lazygit CustomCommands []CustomCommand `yaml:"customCommands" jsonschema:"uniqueItems=true"` diff --git a/schema/config.json b/schema/config.json index 626ad1573..8df3e1b2b 100644 --- a/schema/config.json +++ b/schema/config.json @@ -752,7 +752,7 @@ }, "disableStartupPopups": { "type": "boolean", - "description": "If true, don't display introductory popups upon opening Lazygit.\nLazygit sets this to true upon first runninng the program so that you don't see introductory popups every time you open the program." + "description": "If true, don't display introductory popups upon opening Lazygit." }, "customCommands": { "items": {