bitburner-src/src/ScriptEditor/ui/Options.ts
Billy Vong fb5d374279 feat: Add vim mode to script editor
This adds an option to turn on vim mode using the `monaco-vim` library.
2021-12-17 12:34:00 -05:00

7 lines
107 B
TypeScript

export interface Options {
theme: string;
insertSpaces: boolean;
fontSize: number;
vim: boolean;
}