diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-03-11 14:29:01 -0500 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-03-11 14:29:01 -0500 |
commit | 445b8beff2490512ea0c2b0db3d09457af60c57b (patch) | |
tree | 02617ecab42867a87c68cfb28c52db7cc3b6224a /common/.config/emacs | |
parent | 9402de0da99b24a2f4750b3e0fb7a42e9b23a43e (diff) |
system changes
Diffstat (limited to 'common/.config/emacs')
-rw-r--r-- | common/.config/emacs/init.el.org | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 06de198..663650e 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -415,10 +415,12 @@ Install my pomodoro timer package. Configure =emms= as a music player. #+begin_src emacs-lisp - (use-package emms) + (use-package emms + :init + (setq emms-player-list '(emms-player-vlc) + emms-info-functions '(emms-info-native))) #+end_src - * Languages Configure =org-mode=. I use =~/org= as my =org= directory and hide emphasis markers because it's much easier to read that way. I enable =org-crypt= to allow reading and writing encrypted =org= files. I also replace bullets in bulleted lists with nicer looking icons. I configure faces to default to variable-width font, but switching to monospace where it is necessary. Finally, I use =visual-fill-column= to make =org= files display with a relatively narrow window centred in the frame. |