refactor(variables): place on new lines

This commit is contained in:
Maas Lalani 2022-07-21 11:27:36 -04:00
parent 9d39056a84
commit 6ee9247b94
No known key found for this signature in database
GPG key ID: 5A6ED5CBF1A0A000

View file

@ -12,6 +12,7 @@ var bubbleGumPink = lipgloss.NewStyle().Foreground(lipgloss.Color("212"))
func main() {
lipgloss.SetColorProfile(termenv.ANSI256)
gum := &Gum{}
ctx := kong.Parse(
gum,
@ -21,7 +22,10 @@ func main() {
Compact: true,
Summary: false,
}),
kong.Vars{"defaultBackground": "", "defaultForeground": ""},
kong.Vars{
"defaultBackground": "",
"defaultForeground": "",
},
)
ctx.Run()
}