Group related configuration options into nested TOML sections rather than using flat key-value pairs. This improves readability, maintainability, and makes relationships between settings more explicit.
Group related configuration options into nested TOML sections rather than using flat key-value pairs. This improves readability, maintainability, and makes relationships between settings more explicit.
Example: Instead of:
word-completion = true
word-completion-trigger-length = 7
Use:
[word-completion]
enable = true
trigger-length = 7
This approach:
When adding new configuration options, consider if they logically belong in an existing section or warrant creating a new nested section.
Enter the URL of a public GitHub repository