-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from vincentdephily/configfile
Config file support
- Loading branch information
Showing
16 changed files
with
976 additions
and
549 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This is an example `emlop` config file. | ||
# | ||
# It is loaded from `$HOME/.config/emlop.toml` by default. | ||
# Use `$EMLOP_CONFIG` to set a different location, empty string to disable config loading. | ||
# Entries have the same name and format as command-line args, see `emlop <command> --help`. | ||
# Some args are only avaible via the command line. | ||
|
||
# logfile = "/var/log/emerge.log" | ||
# date = "rfc2822" | ||
# duration = "human" | ||
# utc = true | ||
# header = true | ||
[log] | ||
# show = "mus" | ||
# starttime = true | ||
[predict] | ||
# show = "emt" | ||
# avg = "arith" | ||
# limit = 20 | ||
# unknown = 300 | ||
# tmpdir = ["/foo", "/bar"] | ||
[stats] | ||
# show = "pts" | ||
# avg = "arith" | ||
# limit = 20 | ||
# group = "y" | ||
[accuracy] | ||
# show = "mt" | ||
# avg = "arith" | ||
# limit = 20 |
Oops, something went wrong.