From f93d635673b3e7b3272ffca33a2775296d0e9d11 Mon Sep 17 00:00:00 2001 From: Lars Tveito Date: Thu, 6 Aug 2015 17:13:29 +0200 Subject: [PATCH] Don't fold lines --- init.org | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/init.org b/init.org index db7ec7d..018f8ca 100644 --- a/init.org +++ b/init.org @@ -268,10 +268,11 @@ buffer-local variable's default value. #+BEGIN_SRC emacs-lisp - (setq-default fill-column 76 ; Maximum line width. - indent-tabs-mode nil ; Use spaces instead of tabs. - split-width-threshold 100 ; Split verticly by default. - auto-fill-function 'do-auto-fill) ; Auto-fill-mode everywhere. + (setq-default fill-column 79 ; Maximum line width + truncate-lines t ; Don't fold lines + indent-tabs-mode nil ; Use spaces instead of tabs + split-width-threshold 100 ; Split verticly by default + auto-fill-function 'do-auto-fill) ; Auto-fill-mode everywhere #+END_SRC The =load-path= specifies where Emacs should look for =.el=-files (or