Truncate long lines

This commit is contained in:
Tom Willemse 2016-08-06 03:56:43 +02:00
parent 1b3907e8d6
commit ed329adacd

View file

@ -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