22 lines
No EOL
822 B
JSON
22 lines
No EOL
822 B
JSON
/*
|
|
|
|
All settings for Caret are stored in JSON-formatted files. If you open one of
|
|
these files from the menu, then save it, it'll be dropped into Chrome's
|
|
synchronized storage, which means that (theoretically) all your computers will
|
|
get a copy.
|
|
|
|
Unfortunately, it's not (yet) possible to merge configuration the way that
|
|
Sublime does, which means that this won't behave exactly like you may expect.
|
|
If new options are introduced, you'll need to copy your settings to a new
|
|
file, reset Caret's config to the defaults from the menu, then copy your
|
|
configuration changes back over. Sorry about that. I'm working on it.
|
|
|
|
*/
|
|
{
|
|
"defaultTheme": "chrome", //AKA "Native"
|
|
"indentation": 2,
|
|
"wordWrap": true,
|
|
"fontFamily": "", //WARNING: only fixed-width fonts are currently supported
|
|
"fontSize": 13,
|
|
"useWorker": true
|
|
} |