| 123456789101112131415161718192021 |
- import { FontFamily, LineHeight, OverallTheme } from '@/shared/utils/styles'
- export type Keybindings = 'none' | 'default' | 'vim' | 'emacs'
- export type PdfViewer = 'pdfjs' | 'native'
- export type UserSettings = {
- pdfViewer: PdfViewer
- autoComplete: boolean
- autoPairDelimiters: boolean
- syntaxValidation: boolean
- editorTheme: string
- overallTheme: OverallTheme
- mode: Keybindings
- fontSize: number
- fontFamily: FontFamily
- lineHeight: LineHeight
- mathPreview: boolean
- referencesSearchMode: 'advanced' | 'simple'
- enableNewEditor: boolean
- breadcrumbs: boolean
- }
|