diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-09-29 16:36:15 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-09-29 16:36:15 -0500 |
commit | 95d7f9c741cadccb4c7005a1a18039452fd96e6d (patch) | |
tree | 5131d243ec4a4a739ea1edc9a129d1420a3f07f5 | |
parent | be54dff61c6a88dec8a9739154d393beb3d0785d (diff) | |
download | dotfiles-95d7f9c741cadccb4c7005a1a18039452fd96e6d.tar.gz dotfiles-95d7f9c741cadccb4c7005a1a18039452fd96e6d.zip |
VimFX: Use Fandom directly instead of redirecting to BreezeWiki
-rw-r--r-- | common/.vimfx/config.js | 2 | ||||
-rw-r--r-- | common/.vimfx/userContent.css | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/common/.vimfx/config.js b/common/.vimfx/config.js index 238f7b4..a750704 100644 --- a/common/.vimfx/config.js +++ b/common/.vimfx/config.js @@ -558,7 +558,7 @@ let redirects = { "^(.+?)://imdb.com(/.*)?$": "$1://librembd.lunar.icu$2", "^(.+?)://(bsky.app/.*)$": "$1://skyview.social?url=$2", "^(.+?)://(i\\.)?imgur\\.com(/.*)?$": "$1://rimgo.catsarch.com$3", - "^(.+?)://(.+)\\.fandom.com(/.*)?$": "$1://breezewiki.com/$2$3", + // "^(.+?)://(.+)\\.fandom.com(/.*)?$": "$1://breezewiki.com/$2$3", } // ** Implementation function redirect(url) { diff --git a/common/.vimfx/userContent.css b/common/.vimfx/userContent.css index a230e0b..3493445 100644 --- a/common/.vimfx/userContent.css +++ b/common/.vimfx/userContent.css @@ -45,3 +45,8 @@ div.p span.v { padding: 0 !important } } + +@-moz-document domain("fandom.com") { + #global-top-navigation { display: none !important } + #global-explore-navigation { display: none !important } +} |