Add cursor style, get multiple global settings working

This commit is contained in:
Daniel Imms
2016-11-04 17:55:07 -07:00
parent 18a0e9d164
commit 06753a756c
2 changed files with 36 additions and 22 deletions

View File

@@ -16,7 +16,13 @@ export interface IColorSet {
type?: string;
}
ui?: {
/** The default background color */
background?: string;
/** The default foreground color */
foreground?: string;
/** The color of the editor cursor/caret */
cursor?: string;
selectionHighlight?: string;
}
}