diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-23 15:11:15 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-23 15:11:15 -0400 |
| commit | 64f1e7926ce5e62558b582a272734d7998eaddb2 (patch) | |
| tree | bf32d1eb5e8be6427900fdeca38c8a0fff2b152c /modules/qutebrowser/config.py | |
| parent | 65fc14ef815dfe9b2818ead96d4dd75c70336e54 (diff) | |
| download | home-64f1e7926ce5e62558b582a272734d7998eaddb2.tar.gz | |
modules/qutebrowser: respect fontconfig and dark mode
Diffstat (limited to 'modules/qutebrowser/config.py')
| -rw-r--r-- | modules/qutebrowser/config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/qutebrowser/config.py b/modules/qutebrowser/config.py index 6c3ee83..d8d3595 100644 --- a/modules/qutebrowser/config.py +++ b/modules/qutebrowser/config.py @@ -14,9 +14,9 @@ config.bind('j', 'search-next') config.bind('J', 'search-prev') config.bind('l', 'mode-enter insert') -c.fonts.default_family = 'GoMono Nerd Font Propo' -c.fonts.prompts = '11pt GoMono Nerd Font Propo' -c.fonts.default_size = '11pt' +# c.fonts.default_family = 'sans' +# c.fonts.prompts = 'sans' +# c.fonts.default_size = '12pt' c.hints.chars = 'arstneio' c.hints.radius=0 @@ -33,7 +33,7 @@ c.editor.command=["neovide", "{file}", "--", "-c", "normal {line}G{column0}l"] c.prompt.filebrowser=False c.prompt.radius=0 c.scrolling.bar="never" -c.scrolling.smooth=True +c.scrolling.smooth=False c.search.incremental=False c.search.wrap=False c.search.wrap_messages=False |