mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-17 01:42:45 +02:00
Merge pull request #2331 from Ryooooooga/remove-unused-config
This commit is contained in:
@ -101,7 +101,6 @@ refresher:
|
|||||||
update:
|
update:
|
||||||
method: prompt # can be: prompt | background | never
|
method: prompt # can be: prompt | background | never
|
||||||
days: 14 # how often an update is checked for
|
days: 14 # how often an update is checked for
|
||||||
reporting: 'undetermined' # one of: 'on' | 'off' | 'undetermined'
|
|
||||||
confirmOnQuit: false
|
confirmOnQuit: false
|
||||||
# determines whether hitting 'esc' will quit the application when there is nothing to cancel/close
|
# determines whether hitting 'esc' will quit the application when there is nothing to cancel/close
|
||||||
quitOnTopLevelReturn: false
|
quitOnTopLevelReturn: false
|
||||||
|
@ -9,8 +9,6 @@ type UserConfig struct {
|
|||||||
Git GitConfig `yaml:"git"`
|
Git GitConfig `yaml:"git"`
|
||||||
Update UpdateConfig `yaml:"update"`
|
Update UpdateConfig `yaml:"update"`
|
||||||
Refresher RefresherConfig `yaml:"refresher"`
|
Refresher RefresherConfig `yaml:"refresher"`
|
||||||
Reporting string `yaml:"reporting"`
|
|
||||||
SplashUpdatesIndex int `yaml:"splashUpdatesIndex"`
|
|
||||||
ConfirmOnQuit bool `yaml:"confirmOnQuit"`
|
ConfirmOnQuit bool `yaml:"confirmOnQuit"`
|
||||||
QuitOnTopLevelReturn bool `yaml:"quitOnTopLevelReturn"`
|
QuitOnTopLevelReturn bool `yaml:"quitOnTopLevelReturn"`
|
||||||
Keybinding KeybindingConfig `yaml:"keybinding"`
|
Keybinding KeybindingConfig `yaml:"keybinding"`
|
||||||
@ -415,8 +413,6 @@ func GetDefaultConfig() *UserConfig {
|
|||||||
Method: "prompt",
|
Method: "prompt",
|
||||||
Days: 14,
|
Days: 14,
|
||||||
},
|
},
|
||||||
Reporting: "undetermined",
|
|
||||||
SplashUpdatesIndex: 0,
|
|
||||||
ConfirmOnQuit: false,
|
ConfirmOnQuit: false,
|
||||||
QuitOnTopLevelReturn: false,
|
QuitOnTopLevelReturn: false,
|
||||||
Keybinding: KeybindingConfig{
|
Keybinding: KeybindingConfig{
|
||||||
|
Reference in New Issue
Block a user