cli/docs/config.md
Config folder should be located at $HOME/.config/limbo. The config file inside should be named limbo.toml. Optionally you can have a themes folder whithin to store .tmTheme files to be discovered by the CLI on startup.
Describes the Limbo Config file for the CLI\
Note: Colors can be inputted as
"#010101""#A3F""100""black""red""green""yellow""blue""purple""cyan""magenta""white""grey""bright-black""bright-red""bright-green""bright-yellow""bright-blue""bright-cyan""bright-magenta""bright-white""dark-red""dark-green""dark-yellow""dark-blue""dark-magenta""dark-cyan""dark-grey"tablecolumn_colorsType: List[Color]
Example: ["cyan"]
header_colorType: Color
Example: "red"
highlightenableType: bool
Example: true
themeType: String
Example: "base16-ocean.dark"
Preloaded themes:
base16-ocean.darkbase16-eighties.darkbase16-mocha.darkbase16-ocean.lightYou can reference a custom theme in your themes folder directly by name from the config file.
Example:
Folder structure
limbo
├── limbo.toml
└── themes
└── Amy.tmTheme
limbo.toml
[highlight]
theme = "Amy"
promptType: Color
Example: "green"
hintType: Color
Example: "grey"
candidateType: Color
Example: "yellow"
limbo.toml[table]
column_colors = ["cyan", "black", "#010101"]
header_color = "red"
[highlight]
enable = true
prompt = "bright-blue"
theme = "base16-ocean.light"
hint = "123"
candidate = "dark-yellow"