codervitali

Caret--user.json

Oct 7th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.22 KB | None | 0 0
  1. {
  2.     //If you want to disable update checks at startup, change this
  3.     "promptForUpdates": true,
  4.  
  5.     "defaultTheme": "tomorrow_night_eighties", //This should be any of the supported Ace themes
  6.     /*
  7.     Ace theme names are usually underscored, lowercase versions of the "friendly" names:
  8.       ambiance
  9.       chaos
  10.       chrome
  11.       clouds
  12.       clouds_midnight
  13.       cobalt
  14.       crimson_editor
  15.       dawn
  16.       dreamweaver
  17.       eclipse
  18.       github
  19.       idle_fingers
  20.       katzenmilch
  21.       kuroir
  22.       merbivore
  23.       merbivore_soft
  24.       monokai
  25.       mono_industrial
  26.       pastel_on_dark
  27.       solarized_dark
  28.       solarized_light
  29.       son_of_obsidian
  30.       terminal
  31.       textmate
  32.       tomorrow
  33.       tomorrow_night
  34.       tomorrow_night_blue
  35.       tomorrow_night_bright
  36.       tomorrow_night_eighties
  37.       twilight
  38.       vibrant_ink
  39.       xcode
  40.     */
  41.     "uiTheme": "light", //dark, twilight, or light
  42.     "autoHideProject": false, //collapse the project view until you hover
  43.     "immersiveFullscreen": false, //hides menus/tabs in Chrome OS fullscreen mode
  44.     "highlightLine": true,
  45.     "hideGutter": false, //set to true to hide the line numbering
  46.  
  47.     "showWhitespace": false, //show whitespace characters (spaces, tabs, returns)
  48.     "indentation": 4, //indentation size
  49.     "useTabs": true, //will turn off Ace's setUseSoftTabs() option and use tab characters instead
  50.     "wordWrap": true,
  51.     "wrapLimit": 80, //Set to the number of characters you want or false for full window
  52.     "showMargin": true,
  53.     "lineEndings": "windows", //newline format - "windows", "unix", or "auto"
  54.     "scrollPastEnd": true, //allow the editor to scroll past the end of the document
  55.     "trimTrailingWhitespace": false, //run "Trim Trailing Whitespace" on save
  56.     "trimEmptyLines": false, //should the trim whitespace command also truncate empty lines?
  57.  
  58.     //only fixed-width fonts supported, for now
  59.     "fontFamily": "",
  60.     "fontSize": 13,
  61.  
  62.     //Web workers are used for code hinting in PHP, JavaScript, and JSON.
  63.     //We don't yet have a way to set the worker options, but you can disable it.
  64.     "useWorker": true,
  65.     //autocomplete triggers on Ctrl-Space
  66.     "autocomplete": true,
  67.     //autocomplete triggers automatically
  68.     "autocompleteLive": false,
  69.     //"Behaviors" are the auto-paired quotes and HTML tags in the editor
  70.     "disableBehaviors": false,
  71.  
  72.     //By default, the palette searches the current file's text only unless you widen the scope.
  73.     //If you'd like it to search all open files by default, set this option to true.
  74.     "searchAllFiles": false,
  75.     //set the max search results that project wide search will return.
  76.     "maxSearchMatches": 50,
  77.  
  78.     //set a regex to ignore in project view/search
  79.     "ignoreFiles": "node_modules",
  80.     //by default, Caret doesn't show hidden folders (i.e., .git) in its project view
  81.     "showHiddenDirectories": false,
  82.     //set this to enable autosave every X minutes
  83.     "autosaveInterval": 0,
  84.     "autosaveOnBlur": false,
  85.     //If the editor jumps to the top on focus change, set this:
  86.     "disableReload": false,
  87.     //Set this to stop the editor from restoring the last set of tabs it had open
  88.     "disableTabRestore": false,
  89.  
  90.     //Wildly eccentric? You might like Vim keybindings.
  91.     "emulateVim": false,
  92.  
  93.     //jsHint settings are applied on opening a JS file
  94.     "jsHint": {
  95.  
  96.     },
  97.     //Whether to show the "New file" tab button on the tab bar;
  98.     "showNewTabButton": false
  99. }
Add Comment
Please, Sign In to add comment