summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/ide/lib/editor_options.js
blob: e35595ab1fd3ea6ec45ce86dfbf9b4436a0c573f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export const defaultEditorOptions = {
  model: null,
  readOnly: false,
  contextmenu: true,
  scrollBeyondLastLine: false,
  minimap: {
    enabled: false,
  },
  wordWrap: 'on',
};

export default [
  {
    readOnly: model => !!model.file.file_lock,
    quickSuggestions: model => !(model.language === 'markdown'),
  },
];