Eugene Pankov 0ea346a6ae wip
2017-04-11 02:22:48 +02:00

34 lines
760 B
TypeScript

import { ConfigProvider } from 'terminus-core'
export class TerminalConfigProvider extends ConfigProvider {
defaultConfigValues: any = {
terminal: {
font: 'monospace',
fontSize: 14,
bell: 'off',
bracketedPaste: true,
background: 'theme',
colorScheme: {
foreground: null,
background: null,
colors: null,
},
},
hotkeys: {
'new-tab': [
['Ctrl-A', 'C'],
['Ctrl-A', 'Ctrl-C'],
'Ctrl-Shift-T',
]
},
}
configStructure: any = {
terminal: {
colorScheme: {},
},
hotkeys: {},
}
}