@ -155,7 +155,6 @@ void Config::read(const JSON &cfg) {
source . auto_reload_changed_files = source_json . boolean ( " auto_reload_changed_files " , JSON : : ParseOptions : : accept_string ) ;
source . search_for_selection = source_json . boolean ( " search_for_selection " , JSON : : ParseOptions : : accept_string ) ;
source . tooltip_top_offset = source_json . integer ( " tooltip_top_offset " , JSON : : ParseOptions : : accept_string ) ;
source . use_lsp_for_c_languages = source_json . boolean ( " use_lsp_for_c_languages " , JSON : : ParseOptions : : accept_string ) ;
source . clang_format_style = source_json . string ( " clang_format_style " ) ;
source . clang_usages_threads = static_cast < unsigned > ( source_json . integer ( " clang_usages_threads " , JSON : : ParseOptions : : accept_string ) ) ;
source . clang_tidy_enable = source_json . boolean ( " clang_tidy_enable " , JSON : : ParseOptions : : accept_string ) ;
@ -302,7 +301,6 @@ std::string Config::default_config() {
" auto_reload_changed_files " : true ,
" search_for_selection " : true ,
" tooltip_top_offset " : 0 ,
" use_lsp_for_c_languages " : false ,
" clang_format_style_comment " : " IndentWidth, AccessModifierOffset and UseTab are set automatically. See http://clang.llvm.org/docs/ClangFormatStyleOptions.html " ,
" clang_format_style " : " ColumnLimit: 0, NamespaceIndentation: All " ,
" clang_tidy_enable_comment " : " Enable clang-tidy in new C/C++ buffers " ,