Lots of changes to dotfiles
This commit is contained in:
parent
72692a1a23
commit
6ca009600d
8 changed files with 209 additions and 144 deletions
13
qutebrowser/autoconfig.yml
Normal file
13
qutebrowser/autoconfig.yml
Normal file
|
@ -0,0 +1,13 @@
|
|||
# DO NOT edit this file by hand, qutebrowser will overwrite it.
|
||||
# Instead, create a config.py - see :help for details.
|
||||
|
||||
config_version: 2
|
||||
settings:
|
||||
fonts.tabs:
|
||||
global: 8pt monospace
|
||||
tabs.max_width:
|
||||
global: 20
|
||||
tabs.position:
|
||||
global: left
|
||||
tabs.width:
|
||||
global: 7%
|
0
qutebrowser/bookmarks/urls
Normal file
0
qutebrowser/bookmarks/urls
Normal file
55
qutebrowser/config.py
Normal file
55
qutebrowser/config.py
Normal file
|
@ -0,0 +1,55 @@
|
|||
# Autogenerated config.py
|
||||
# Documentation:
|
||||
# qute://help/configuring.html
|
||||
# qute://help/settings.html
|
||||
|
||||
# Uncomment this to still load settings configured via autoconfig.yml
|
||||
# config.load_autoconfig()
|
||||
|
||||
# Enable JavaScript.
|
||||
# Type: Bool
|
||||
config.set('content.javascript.enabled', True, 'file://*')
|
||||
|
||||
# Enable JavaScript.
|
||||
# Type: Bool
|
||||
config.set('content.javascript.enabled', True, 'chrome://*/*')
|
||||
|
||||
# Enable JavaScript.
|
||||
# Type: Bool
|
||||
config.set('content.javascript.enabled', True, 'qute://*/*')
|
||||
|
||||
# ,m opens page with mpv
|
||||
config.bind(',m', 'spawn --detach mpv {url}')
|
||||
# ,M hints and oens choice with mpv
|
||||
config.bind(',M', 'hint links spawn --detach mpv {hint-url}')
|
||||
|
||||
# Position of the tab bar.
|
||||
# Type: Position
|
||||
# Valid values:
|
||||
# - top
|
||||
# - bottom
|
||||
# - left
|
||||
# - right
|
||||
c.tabs.position = 'left'
|
||||
|
||||
# Width (in pixels or as percentage of the window) of the tab bar if
|
||||
# it's vertical.
|
||||
# Type: PercOrInt
|
||||
c.tabs.width = '7%'
|
||||
|
||||
# Maximum width (in pixels) of tabs (-1 for no maximum). This setting
|
||||
# only applies when tabs are horizontal. This setting does not apply to
|
||||
# pinned tabs, unless `tabs.pinned.shrink` is False. This setting may
|
||||
# not apply properly if max_width is smaller than the minimum size of
|
||||
# tab contents, or smaller than tabs.min_width.
|
||||
# Type: Int
|
||||
c.tabs.max_width = 20
|
||||
|
||||
# Font used in the tab bar.
|
||||
# Type: QtFont
|
||||
c.fonts.tabs = '8pt monospace'
|
||||
|
||||
c.url.searchengines['goog'] = 'https://google.com/search?q={}'
|
||||
c.url.searchengines['aur'] = 'https://aur.archlinux.org/packages/?O=0&K={}'
|
||||
c.url.searchengines['aw'] = 'https://wiki.archlinux.org/?search={}'
|
||||
|
0
qutebrowser/quickmarks
Normal file
0
qutebrowser/quickmarks
Normal file
Loading…
Add table
Add a link
Reference in a new issue