summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-01-05 21:58:05 +0100
committerRicardo Wurmus <rekado@elephly.net>2017-01-05 21:59:18 +0100
commita4eecdc7d6eee28265babecdf39e83e325dc89fd (patch)
tree420bd28f9a52217a3c5757dca4b0c2207a2c45be
parent13fbd2e9a8a8b7f69aacabf72f2b69e50bb70ec0 (diff)
Move EMMS modeline config down.
-rw-r--r--init.org18
1 files changed, 9 insertions, 9 deletions
diff --git a/init.org b/init.org
index ce26049..20d5374 100644
--- a/init.org
+++ b/init.org
@@ -783,15 +783,6 @@ I like to use EMMS as a music player. Unfortunately, the default players like m
(setq emms-player-list (list emms-player-mpv))
#+END_SRC
-On my laptop screen the file name in the EMMS modeline cannot be fully displayed. I use =emms-mode-line-cycle= to limit the width of the file name in the modeline.
-
-#+BEGIN_SRC elisp
-(require 'emms-mode-line-cycle)
-(emms-mode-line 1)
-(emms-playing-time 1)
-(emms-mode-line-cycle 1)
-#+END_SRC
-
Some more initialisation settings:
#+BEGIN_SRC elisp
@@ -834,6 +825,15 @@ Set up global key bindings for controlling EMMS in any mode.
(lambda () (interactive) (emms-seek -60)))
#+END_SRC
+On my laptop screen the file name in the EMMS modeline cannot be fully displayed. I use =emms-mode-line-cycle= to limit the width of the file name in the modeline.
+
+#+BEGIN_SRC elisp
+(require 'emms-mode-line-cycle)
+(emms-mode-line 1)
+(emms-playing-time 1)
+(emms-mode-line-cycle 1)
+#+END_SRC
+
All of this should be loaded lazily.
#+BEGIN_SRC elisp :noweb-ref emms-lazy