qutebrowser: Continue nixifying config

This commit is contained in:
Donovan Glover 2023-06-23 21:08:55 -04:00
parent 7209bae4a3
commit 7bda618b83
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -35,6 +35,18 @@
single_file.command = [ "kitty" "-e" "joshuto" "--output-file" "{}" ];
};
downloads = {
location.directory = "$HOME/Downloads";
location.prompt = false;
position = "bottom";
remove_finished = 5000;
};
qt = {
args = [ "disable-backing-store-limit" "enable-accelerated-video-decode" "disable-gpu-driver-bug-workarounds" ];
chromium.low_end_device_mode = "never";
};
editor.command = [ "kitty" "-e" "nvim" "{}" ];
};
@ -74,16 +86,6 @@
c.colors.contextmenu.menu.fg = '#ffffff'
c.colors.contextmenu.selected.bg = '#909090'
# Chromium flags
c.qt.args = ["disable-backing-store-limit", "enable-accelerated-video-decode", "disable-gpu-driver-bug-workarounds"]
c.qt.chromium.low_end_device_mode = 'never'
# Download settings
c.downloads.location.directory = "$HOME/Downloads"
c.downloads.location.prompt = False
c.downloads.position = "bottom"
c.downloads.remove_finished = 5000
# Increase the default scroll offset of j/k
# NOTE: Unfortunately this breaks websites that use their own keybinds for j/k/etc
# config.bind('j', 'run-with-count 5 scroll down')