Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.22 KB | None | 0 0
  1. c.content.ssl_strict = False
  2. c.auto_save.session = True
  3. c.url.start_pages = 'about:blank'
  4. c.backend = 'webengine'
  5. c.content.cache.maximum_pages = 10
  6. c.content.host_blocking.enabled = True
  7. c.content.pdfjs = False
  8. c.content.headers.user_agent = "Mozilla/5.0 (Windows NT 6.1; rv:52.0) Gecko/20100101 Firefox/52.0"
  9. c.content.headers.accept_language = "en-Us,en,q=0.5"
  10. c.content.headers.custom = {"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"}
  11. c.content.javascript.can_open_tabs_automatically = True
  12. c.content.local_content_can_access_remote_urls = True
  13. c.completion.shrink = True
  14. c.completion.use_best_match = True
  15. c.downloads.open_dispatcher = "{}"
  16. c.editor.command = ['termite', '-e', 'nvim -f {file}']
  17. c.hints.chars = 'asdfghjklweruion'
  18. c.hints.uppercase = True
  19. # not sure about the keys, maybe helps with ESC not being able to leave input mode
  20. c.input.forward_unbound_keys = 'none'
  21. c.tabs.last_close = 'close'
  22. c.tabs.mousewheel_switching = False
  23. c.tabs.select_on_remove = 'next'
  24. c.url.default_page = 'about:blank'
  25. c.url.open_base_url = True
  26. c.tabs.background = True
  27. c.session.default_name = None
  28. c.session.lazy_restore = True
  29. c.scrolling.smooth = False
  30. c.qt.force_software_rendering = 'none'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement