15 lines
564 B
Python
15 lines
564 B
Python
# vim: filetype=python
|
|
|
|
config.load_autoconfig(False)
|
|
# actions
|
|
config.set('tabs.tabs_are_windows', True)
|
|
config.set('tabs.show', 'never')
|
|
for mode in ['normal','insert','hint','passthrough','command','prompt','yesno','register']:
|
|
config.bind('<Cut>', 'fake-key -g <Ctrl-x>', mode)
|
|
config.bind('<Copy>', 'fake-key -g <Ctrl-c>', mode)
|
|
config.bind('<Paste>', 'fake-key -g <Ctrl-v>', mode)
|
|
# colors
|
|
config.set('colors.webpage.preferred_color_scheme','dark')
|
|
config.set('colors.webpage.darkmode.enabled', True)
|
|
config.set('colors.webpage.bg','#$THEME_COLOR_BG')
|