diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-02-25 14:37:38 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-02-25 14:37:38 -0600 |
commit | 20ad911db2016aff3459b146e9a23702c6d3b575 (patch) | |
tree | be35f86c4b41d8c441cbdc5c67b82b7653d53dee /common | |
parent | 4af67d0cd2236a0fce2b16a986d79200db6e5274 (diff) |
system changes
Diffstat (limited to 'common')
-rw-r--r-- | common/.config/emacs/init.el.org | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org index 0425399..eb7fda9 100644 --- a/common/.config/emacs/init.el.org +++ b/common/.config/emacs/init.el.org @@ -338,6 +338,17 @@ Configure and install =elfeed= to serve as an =rss= feed reader. It stores the f (setq rmh-elfeed-org-files (list "~/.config/emacs/feed.org"))) #+end_src +Smooth scrolling with =ultra-scroll=. +#+begin_src emacs-lisp + (use-package ultra-scroll + :ensure (ultra-scroll :host github :repo "jdtsmith/ultra-scroll") + :init + (setq scroll-conservatively 101 + scroll-margin 0) + :config + (ultra-scroll-mode 1)) +#+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. |