mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 07:16:34 +00:00
26 lines
515 B
TypeScript
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
|
|
}
|
|
}
|