diff options
author | Alan Pearce | 2015-09-16 13:09:32 +0200 |
---|---|---|
committer | Alan Pearce | 2015-09-16 13:09:32 +0200 |
commit | 9896758b40392d1e3de20f598248382a161ac2eb (patch) | |
tree | 12a80e42faf22b0ba9e5df569d1d5077b859ec33 | |
parent | 087c2ce7a4d5d9c71862f6869c9202f592c6c351 (diff) | |
download | nixfiles-9896758b40392d1e3de20f598248382a161ac2eb.tar.lz nixfiles-9896758b40392d1e3de20f598248382a161ac2eb.tar.zst nixfiles-9896758b40392d1e3de20f598248382a161ac2eb.zip |
Emacs: Install page-break-lines mode
-rw-r--r-- | tag-emacs/emacs.d/Cask | 1 | ||||
-rw-r--r-- | tag-emacs/emacs.d/init.org | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/Cask b/tag-emacs/emacs.d/Cask index 1ef60adb..3e24870c 100644 --- a/tag-emacs/emacs.d/Cask +++ b/tag-emacs/emacs.d/Cask @@ -90,6 +90,7 @@ (depends-on "org-plus-contrib") (depends-on "package-build") (depends-on "packed") +(depends-on "page-break-lines") (depends-on "pallet") (depends-on "paredit") (depends-on "password-store") diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index ee06ec87..ccbfb361 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -361,6 +361,16 @@ these settings are particularly useful (t . t))) #+END_SRC +** Page Breaks + +By default, Emacs displays page breaks as ^L. Lines look much nicer. + +#+BEGIN_SRC emacs-lisp + (req-package page-break-lines + :defer 5 + :config (global-page-break-lines-mode)) +#+END_SRC + * Files ** Auto-saving |