mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-08 21:40:03 +00:00
34 lines
760 B
TypeScript
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: {},
|
|
}
|
|
}
|