mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 19:32:24 +00:00
61 lines
1.5 KiB
Python
61 lines
1.5 KiB
Python
|
import gruvboxy.draw
|
||
|
|
||
|
gruvboxy.draw.blood(c, {
|
||
|
'spacing': {
|
||
|
'vertical': 4,
|
||
|
'horizontal': 8
|
||
|
}
|
||
|
})
|
||
|
|
||
|
# config.load_autoconfig()
|
||
|
c.backend = 'webengine'
|
||
|
|
||
|
c.scrolling.bar = "always" # "when-searching"
|
||
|
c.content.user_stylesheets = "user.css"
|
||
|
|
||
|
config.unbind("<Ctrl-tab>")
|
||
|
config.unbind("d")
|
||
|
config.bind("Q", "tab-close")
|
||
|
config.bind("<Ctrl-Tab>", "tab-next")
|
||
|
config.bind("<Ctrl-Shift-Tab>", "tab-prev")
|
||
|
config.bind("<Ctrl-L>", "set-cmd-text -s :open")
|
||
|
|
||
|
config.bind(",y", "hint links spawn mpv {hint-url}")
|
||
|
config.bind(",Y", "spawn mpv {url}")
|
||
|
config.bind(",p", "hint links spawn evince {url}")
|
||
|
|
||
|
|
||
|
config.bind("<Alt-j>", "scroll-px 0 40")
|
||
|
config.bind("<Alt-k>", "scroll-px 0 -40")
|
||
|
|
||
|
c.tabs.show = "multiple"
|
||
|
c.tabs.background = True
|
||
|
c.tabs.show_switching_delay = 1000
|
||
|
|
||
|
c.url.open_base_url = True
|
||
|
|
||
|
c.input.insert_mode.auto_enter = True
|
||
|
|
||
|
c.statusbar.hide = False
|
||
|
c.fonts.statusbar = "default_size Iosevka"
|
||
|
c.fonts.default_family = ["JetBrainsMono"]
|
||
|
|
||
|
c.editor.command = ["alacritty", "-e", "vim", "{file}"]
|
||
|
|
||
|
|
||
|
# c.auto_save.session = True
|
||
|
|
||
|
c.url.searchengines = {
|
||
|
"DEFAULT": "https://duckduckgo.com/?q={}",
|
||
|
"wa": "https://wiki.archlinux.org/?search={}",
|
||
|
"y": "https://youtube.com/results?search_query={}",
|
||
|
"g": "https://google.com/search?q={}",
|
||
|
"h": "https://hoogle.haskell.org/?hoogle={}",
|
||
|
"w": "https://wikipedia.org/wiki/Special:Search/{}"
|
||
|
}
|
||
|
|
||
|
# c.content.user_stylesheets = "user.css"
|
||
|
|
||
|
c.colors.webpage.prefers_color_scheme_dark = True
|
||
|
c.statusbar.padding = {"bottom": 1, "left": 8, "right": 8, "top": 1}
|