I am trying to get youtube working with invidious. I'm using a simple test config with the following:
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
(unless package-archive-contents
(package-refresh-contents))
(unless (package-installed-p 'use-package)
(package-install 'use-package))
(require 'use-package)
(setq use-package-always-ensure t)
(use-package empv
:ensure t
:config
(setq empv-invidious-instance "https://invidious.io.lol"))
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages '(empv use-package undo-tree general evil-collection)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
)
I've tried several different invidious instances, and I've also attempted to use both empv-youtube and empv-youtube-tabulated. I get no results for either. Any ideas on what I should try?
Hello,
I am trying to get youtube working with invidious. I'm using a simple test config with the following:
I've tried several different invidious instances, and I've also attempted to use both empv-youtube and empv-youtube-tabulated. I get no results for either. Any ideas on what I should try?