Factor out local qutebrowser config
This commit is contained in:
parent
622a050417
commit
8edbde6631
2 changed files with 7 additions and 0 deletions
1
qutebrowser/.gitignore
vendored
1
qutebrowser/.gitignore
vendored
|
|
@ -2,3 +2,4 @@ autoconfig.yml
|
||||||
bookmarks
|
bookmarks
|
||||||
quickmarks
|
quickmarks
|
||||||
qsettings/
|
qsettings/
|
||||||
|
local.py
|
||||||
|
|
|
||||||
|
|
@ -1550,3 +1550,9 @@ config.bind('gh', 'tab-move -')
|
||||||
|
|
||||||
## Bindings for register mode
|
## Bindings for register mode
|
||||||
# config.bind('<Escape>', 'leave-mode', mode='register')
|
# config.bind('<Escape>', 'leave-mode', mode='register')
|
||||||
|
|
||||||
|
try:
|
||||||
|
import local
|
||||||
|
local.apply(c, config)
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue