judge4c/src/constants/code-editor-options.ts

26 lines
515 B
TypeScript

import * as monaco from "monaco-editor"
export const CODE_EDITOR_OPTIONS: monaco.editor.IEditorConstructionOptions = {
autoIndent: "full",
automaticLayout: true,
contextmenu: true,
fontFamily: "Fira Code",
fontLigatures: true,
fontSize: 14,
lineHeight: 20,
hideCursorInOverviewRuler: true,
matchBrackets: "always",
minimap: {
enabled: false
},
wordWrap: "on",
padding: {
top: 18
},
readOnly: false,
scrollbar: {
horizontalSliderSize: 4,
verticalSliderSize: 18
}
}