From 806c8bca092676ef8f3866a8507b2a9a34bdf268 Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Thu, 17 Jan 2019 20:16:00 -0600 Subject: [PATCH] added configuration for qutebrowser, my personal favorite web browser. --- qutebrowser/.config/qutebrowser/config.py | 35 +++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 qutebrowser/.config/qutebrowser/config.py diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py new file mode 100644 index 0000000..06f8277 --- /dev/null +++ b/qutebrowser/.config/qutebrowser/config.py @@ -0,0 +1,35 @@ +#Customized qutebrowser config +#Copyright 2018 TheToric +# +#This program is free software: you can redistribute it and/or modify +#it under the terms of the GNU General Public License as published by +#the Free Software Foundation, either version 3 of the License, or +#(at your option) any later version. +# +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. +# +#You should have received a copy of the GNU General Public License +#along with this program. If not, see . + +#turn on spellchecking. may need to download and install dictionairies first. +c.spellcheck.languages = ["en-US"] +#will only ask for confirmation to quit if there is an uncompleted download +c.confirm_quit = ["downloads"] +#block 3rd party cookies +c.content.cookies.accept = "no-3rdparty" +#at first, always open pdfs with pdfjs +c.content.pdfjs = True +#remove finished downloads after 5 seconds +c.downloads.remove_finished = 5000 +#open neovin in a urxvt terminal window when calling for an internal editor +c.editor.command = ["urxvt", "-e", "nvim", "-f", "{file}", "-c", "normal {line}G{column0}l"] +#appearance +#fonts settings (monospace everywhere!) +c.fonts.prompts = "10pt monospace" +c.fonts.web.size.minimum = 6 +#tabs +c.tabs.position = "left" +c.tabs.width = "10%"