mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-20 00:04:22 +02:00
4166c09bd4
* Options are responsive again (fix from previous changes) * Better height control on the monaco container using flexbox. * Added options for tab size, auto-detect indentation per-file, font family, and font ligatures.
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
export type WordWrapOptions = "on" | "off" | "bounded" | "wordWrapColumn";
|
|
export type Options = {
|
|
theme: string;
|
|
insertSpaces: boolean;
|
|
tabSize: number;
|
|
detectIndentation: boolean;
|
|
fontFamily: string;
|
|
fontSize: number;
|
|
fontLigatures: boolean;
|
|
wordWrap: WordWrapOptions;
|
|
vim: boolean;
|
|
};
|