diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-11-28 16:43:50 +0100 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-11-28 16:43:50 +0100 |
| commit | bc55f5beea4ddd64ce4a2996d64095e145f26cfc (patch) | |
| tree | 0bb22b38e5587d9d1dd1c2a2990f0e7f084ac456 /src/common | |
| parent | 5d03398e911c56134b8798a31fc87b85fe28675b (diff) | |
Add formatter to ols
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/config.odin | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/config.odin b/src/common/config.odin index df12845..89edb06 100644 --- a/src/common/config.odin +++ b/src/common/config.odin @@ -15,6 +15,13 @@ Config :: struct { enable_semantic_tokens: bool, enable_procedure_context: bool, thread_count: int, + file_log: bool, + formatter: Format_Config, +} + +Format_Config :: struct { + tabs: bool, + characters: int, } config: Config;
\ No newline at end of file |