Discover Packages
github.com/0xheartcode/lazydash
internal
config
package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: Mar 19, 2026
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
Documentation
¶
type Config struct {
Defaults Defaults `yaml:"defaults"`
Keybindings Keybindings `yaml:"keybindings"`
}
Load reads config from the first location that exists, in priority order:
1. --config flag path
2. $LAZYDASH_CONFIG env var
3. .lazydash.yml in current dir
4. $XDG_CONFIG_HOME/lazydash/config.yml
type Defaults struct {
Orgs []string `yaml:"orgs"`
RefreshIntervalMinutes int `yaml:"refreshIntervalMinutes"`
IgnoreProjects []string `yaml:"ignoreProjects"`
IgnoreOrgs []string `yaml:"ignoreOrgs"`
OnlyOrgs []string `yaml:"onlyOrgs"`
OnlyProjects []string `yaml:"onlyProjects"`
}
type Keybindings struct {
OpenInBrowser string `yaml:"openInBrowser"`
OpenInGhDash string `yaml:"openInGhDash"`
Refresh string `yaml:"refresh"`
Help string `yaml:"help"`
Quit string `yaml:"quit"`
PrevView string `yaml:"prevView"`
NextView string `yaml:"nextView"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.