diff options
Diffstat (limited to 'ar/.config/qutebrowser/config.py')
| -rw-r--r-- | ar/.config/qutebrowser/config.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ar/.config/qutebrowser/config.py b/ar/.config/qutebrowser/config.py index 264f853..5b8d12f 100644 --- a/ar/.config/qutebrowser/config.py +++ b/ar/.config/qutebrowser/config.py @@ -10,6 +10,10 @@ ## qute://help/configuring.html ## qute://help/settings.html +# pylint: disable=C0111 +c = c # noqa: F821 pylint: disable=E0602,C0103 +config = config # noqa: F821 pylint: disable=E0602,C0103 + ## This is here so configs done via the GUI are still loaded. ## Remove it to not load settings done via the GUI. config.load_autoconfig(True) @@ -1877,7 +1881,7 @@ c.spellcheck.languages = ["en-US", "ko"] ## - always: Always show the statusbar. ## - never: Always hide the statusbar. ## - in-mode: Show the statusbar when in modes other than normal mode. -c.statusbar.show = "always" +c.statusbar.show = "never" ## List of widgets displayed in the statusbar. ## Type: List of StatusbarWidget @@ -2586,5 +2590,7 @@ config.bind( "za", "config-cycle statusbar.show always never;; config-cycle tabs.show always never", ) -config.bind("zb", "config-cycle statusbar.show always never") +config.bind("zs", "config-cycle statusbar.show always never") config.bind("zt", "config-cycle tabs.show always never") + +config.source("themes/catppuccin.py") |
