Reorder helm-emms default sources

I mostly use helm-emms to access streams, and thus I would like to have them on
the top.
This commit is contained in:
Daniel - 2020-11-17 09:14:34 +01:00
parent 4d6aaf5711
commit b39894e6a6
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 4 additions and 1 deletions

View File

@ -2384,7 +2384,10 @@ With given ARG, display files in `db/important-document-path."
(use-package helm-emms
:commands (helm-emms)
:init (setq helm-emms-use-track-description-function t)
:init (setq helm-emms-use-track-description-function t
helm-emms-default-sources '(helm-source-emms-streams
helm-source-emms-dired
helm-source-emms-files))
:config (progn
(require 'emms)
(require 'helm-adaptive)))