aboutsummaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/init.org
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-08-06 03:56:43 +0200
committerGravatar Tom Willemse2016-08-06 03:56:43 +0200
commited329adacd999b675b9cef387a2456c7f1c3c219 (patch)
treed824ab9ba31d5ba8ba3988484af831cef5c1ccff /emacs/.emacs.d/init.org
parent1b3907e8d633426eb0e0bfb7d8bcf53c78b7e77f (diff)
downloadnew-dotfiles-ed329adacd999b675b9cef387a2456c7f1c3c219.tar.gz
new-dotfiles-ed329adacd999b675b9cef387a2456c7f1c3c219.zip
Truncate long lines
Diffstat (limited to 'emacs/.emacs.d/init.org')
-rw-r--r--emacs/.emacs.d/init.org10
1 files changed, 10 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org
index e24bd2a..6a7e5f1 100644
--- a/emacs/.emacs.d/init.org
+++ b/emacs/.emacs.d/init.org
@@ -216,6 +216,16 @@ To start off, first I need to enable lexical binding.
(setq require-final-newline t)
#+END_SRC
+* Long lines
+
+ By default Emacs wraps long lines around to the next line when they
+ reach the far end of the window. However I prefer to have them
+ truncated instead.
+
+ #+BEGIN_SRC emacs-lisp
+ (setq-default truncate-lines t)
+ #+END_SRC
+
* Theme
#+BEGIN_SRC emacs-lisp