conf.user.json 1.2 KB

12345678910111213141516171819202122232425262728
  1. /** For advanced users. */
  2. {
  3. "defaultFontFamily": {
  4. "standard": "Ubuntu", //String - Defaults to "Times New Roman".
  5. "serif": "Ubuntu", // String - Defaults to "Times New Roman".
  6. "sansSerif": "Ubuntu", // String - Defaults to "Arial".
  7. "monospace": "Cascadia Mono PL" //"JetBrains Mono Light" // String - Defaults to "Courier New".
  8. },
  9. "autoHideMenuBar": false, //Boolean - Auto hide the menu bar unless the `Alt` key is pressed. Default is false.
  10. // Array - Search Service user can access from context menu after a range of text is selected. Each item is formatted as [caption, url]
  11. "searchService": [
  12. ["Search with Google", "https://google.com/search?q=%s"]
  13. ],
  14. // Custom key binding, which will override the default ones.
  15. // see https://support.typora.io/Shortcut-Keys/#windows--linux for detail
  16. "keyBinding": {
  17. // for example:
  18. // "Always on Top": "Ctrl+Shift+P"
  19. // All other options are the menu items 'text label' displayed from each typora menu
  20. },
  21. "monocolorEmoji": false, //default false. Only work for Windows
  22. "maxFetchCountOnFileList": 500,
  23. "flags": [] // default [], append Chrome launch flags, e.g: [["disable-gpu"], ["host-rules", "MAP * 127.0.0.1"]]
  24. }