2025-02-20 01:11:20 +00:00
|
|
|
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,
|
2025-02-23 07:05:30 +00:00
|
|
|
guides: {
|
|
|
|
bracketPairs: true,
|
|
|
|
indentation: true,
|
|
|
|
},
|
2025-02-20 01:11:20 +00:00
|
|
|
hideCursorInOverviewRuler: true,
|
2025-02-23 07:05:30 +00:00
|
|
|
lineHeight: 20,
|
2025-02-20 01:11:20 +00:00
|
|
|
matchBrackets: "always",
|
|
|
|
minimap: {
|
|
|
|
enabled: false
|
|
|
|
},
|
|
|
|
padding: {
|
2025-02-23 07:05:30 +00:00
|
|
|
top: 8
|
2025-02-20 01:11:20 +00:00
|
|
|
},
|
|
|
|
readOnly: false,
|
|
|
|
scrollbar: {
|
2025-02-23 12:31:11 +00:00
|
|
|
horizontalSliderSize: 10,
|
|
|
|
verticalSliderSize: 10
|
2025-02-23 07:05:30 +00:00
|
|
|
},
|
|
|
|
showFoldingControls: "always",
|
|
|
|
wordWrap: "on",
|
2025-02-20 01:11:20 +00:00
|
|
|
}
|