Browse Source

More OS X friendly font for OS X, Monospace for other OS'es.

merge-requests/365/head
eidheim 10 years ago
parent
commit
6d83d4cce4
  1. 7
      src/files.h

7
src/files.h

@ -7,7 +7,12 @@ const std::string configjson =
" },\n"
" \"source\": {\n"
" \"style\": \"juci-light\", //Use \"\" for default style, and for instance juci-dark together with dark gtk_theme variant. Styles from normal gtksourceview install: classic, cobalt, kate, oblivion, solarized-dark, solarized-light, tango\n"
" \"font\": \"Monospace\", //Use \"\" for default font, and for instance \"Monospace 12\" to also set size.\n"
#ifdef __APPLE__
" \"font\": \"Menlo 11\", "
#else
" \"font\": \"Monospace\", "
#endif
"//Use \"\" for default font, and for instance \"Monospace 12\" to also set size.\n"
" \"clang_types\": {\n"
" \"8\": \"def:function\",\n"
" \"21\": \"def:function\",\n"

Loading…
Cancel
Save