Skip to content

Commit

Permalink
fix example config (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
phoffmeister authored Oct 22, 2023
1 parent 3e1a805 commit cf1baf3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ You can also put all the options inside config file in `~/.config/donkeytype/don
"numbers": true,
"numbers_ratio": 0.1,
"uppercase": true,
"uppercase_ratio": 0.3
"uppercase_ratio": 0.3,
"colors": {
"correct_match_fg": "green",
"correct_match_bg": "white",
"incorrect_match_fg": "#ff00ff"
"incorrect_match_fg": "#ff00ff",
"incorrect_match_bg": "#0f000f"
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
//! "numbers": true,
//! "numbers_ratio": 0.1,
//! "uppercase": true,
//! "uppercase_ratio": 0.3
//! "uppercase_ratio": 0.3,
//! "colors": {
//! "correct_match_fg": "green",
//! "correct_match_bg": "white",
//! "incorrect_match_fg": "#ff00ff"
//! "incorrect_match_fg": "#ff00ff",
//! "incorrect_match_bg": "#0f000f"
//! }
//! }
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
//! "numbers": true,
//! "numbers_ratio": 0.1,
//! "uppercase": true,
//! "uppercase_ratio": 0.3
//! "uppercase_ratio": 0.3,
//! "colors": {
//! "correct_match_fg": "green",
//! "correct_match_bg": "white",
//! "incorrect_match_fg": "#ff00ff"
//! "incorrect_match_fg": "#ff00ff",
//! "incorrect_match_bg": "#0f000f"
//! }
//! }
Expand Down

0 comments on commit cf1baf3

Please sign in to comment.