diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-03-11 13:37:10 -0500 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-03-11 13:37:10 -0500 |
commit | 9402de0da99b24a2f4750b3e0fb7a42e9b23a43e (patch) | |
tree | 855d3a8cb49d2b3f0a45b6ee90ffd39da0fd700f /common/.config | |
parent | c7e98a6796f9fdf4cd49c8331bb1c6b9881b85e1 (diff) |
system changes
Diffstat (limited to 'common/.config')
-rw-r--r-- | common/.config/emacs/init.el.org | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 58b5598..06de198 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -184,7 +184,6 @@ Automatically increase the size of the focused window. (setq zoom-size '(0.618 . 0.618))) #+end_src - * Tools Install =esup= as a profiling tool. #+begin_src emacs-lisp @@ -408,11 +407,18 @@ Smooth scrolling with =ultra-scroll=. (ultra-scroll-mode 1)) #+end_src +Install my pomodoro timer package. #+begin_src emacs-lisp (use-package pomodoro-mode :ensure (pomodoro-mode :host github :repo "jjanzenn/pomodoro-mode")) #+end_src +Configure =emms= as a music player. +#+begin_src emacs-lisp + (use-package emms) +#+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. |