From b39894e6a689a6e8240070a9b9a427cc1f0958d9 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Tue, 17 Nov 2020 09:14:34 +0100 Subject: [PATCH] Reorder helm-emms default sources I mostly use helm-emms to access streams, and thus I would like to have them on the top. --- init.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 4abaec9..fc292cb 100644 --- a/init.el +++ b/init.el @@ -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)))