diff options
author | pommicket <pommicket@gmail.com> | 2022-12-31 11:54:06 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-31 11:54:06 -0500 |
commit | 02faedf9bf7e826bc78161f8cf07ffca5d2dbe57 (patch) | |
tree | 39a0f0f221fbdec2197f1c8c6d0cf4986df6b8d4 /config.c | |
parent | f40e9f02ef3ca0a86282a927c9bb7887900100b2 (diff) |
highlight-enabled and highlight-auto settings
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -263,6 +263,8 @@ static OptionBool const options_bool[] = { {"lsp-enabled", &options_zero.lsp_enabled, true}, {"hover-enabled", &options_zero.hover_enabled, true}, {"vsync", &options_zero.vsync, false}, + {"highlight-enabled", &options_zero.highlight_enabled, true}, + {"highlight-auto", &options_zero.highlight_auto, true}, }; static OptionU8 const options_u8[] = { {"tab-width", &options_zero.tab_width, 1, 100, true}, |