diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-22 22:45:32 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2021-05-22 22:45:32 +0200 |
| commit | 3c1a47890728bf0740c9b2d718b142a46fc061e3 (patch) | |
| tree | 7e17cfcbeae5891d5a6c5b46ea9edbc3225cf77b /src/common | |
| parent | d22445e3f9152d6ca43c10cc5ac5bfad50cb52ae (diff) | |
prepare to have global config aswell
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/config.odin | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/config.odin b/src/common/config.odin index 432794f..8bb7dc6 100644 --- a/src/common/config.odin +++ b/src/common/config.odin @@ -9,7 +9,11 @@ Config :: struct { running: bool, verbose: bool, debug_single_thread: bool, - enable_semantic_tokens: bool, //This will be removed when vscode client stops sending me semantic tokens after disabling it in requests initialize. + enable_format: bool, + enable_hover: bool, + enable_document_symbols: bool, + enable_semantic_tokens: bool, + thread_count: int, } config: Config;
\ No newline at end of file |