diff options
author | Urbain Vaes <urbain@vaes.uk> | 2020-11-21 16:18:05 +0100 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2020-11-21 16:18:05 +0100 |
commit | d4d8fdbc3996880e12920e1fdf500e91569c724e (patch) | |
tree | 53bb98ec0722726598ac30a25f0990ad5fc6d475 | |
parent | 168b4de6767ca023fd888d8c39b14ecbd79fda22 (diff) |
Minor changes
-rw-r--r-- | python/.pythonrc | 2 | ||||
-rw-r--r-- | qutebrowser/.config/qutebrowser/config.py | 4 | ||||
-rw-r--r-- | zsh/.zshrc | 1 |
3 files changed, 4 insertions, 3 deletions
diff --git a/python/.pythonrc b/python/.pythonrc index 58518f6..4a57585 100644 --- a/python/.pythonrc +++ b/python/.pythonrc @@ -1,4 +1,4 @@ -import math +import math # test import importlib import matplotlib diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index e766985..0f09412 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -5,6 +5,7 @@ from qutebrowser.api import interceptor +# Avoid linter errors c = c config = config @@ -17,9 +18,9 @@ def filter_yt(info: interceptor.Request): info.block() +# Remove youtube adds interceptor.register(filter_yt) - # Colors c.colors.tabs.selected.odd.bg = "#875f5f" c.colors.tabs.selected.even.bg = "#875f5f" @@ -105,4 +106,3 @@ c.aliases = { # Style sheet c.content.user_stylesheets = '/home/urbain/dotfiles/qutebrowser/.config/qutebrowser/style.css' - @@ -39,6 +39,7 @@ setopt extended_history setopt hist_ignore_space setopt inc_append_history setopt no_share_history +setopt interactivecomments # Completion autoload -Uz compinit && compinit |