From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 11 Nov 2019 21:03:40 +0000 (+0100)
Subject: Don't emacs-truncate lines by default.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/static/%7B%7Bprefix%7D%7D/index.html?a=commitdiff_plain;h=0c902594b434aad07304c9471d722fb499d82642;p=config

Don't emacs-truncate lines by default.
---

diff --git a/buster/home_files/user/.emacs.d/init.el b/buster/home_files/user/.emacs.d/init.el
index 3452126..f9ae44e 100644
--- a/buster/home_files/user/.emacs.d/init.el
+++ b/buster/home_files/user/.emacs.d/init.el
@@ -90,7 +90,6 @@
       delete-old-versions 1)  ;; neither t nor nil: never delete
 
 
-
 ;; package management
 ;; ==================
 
@@ -166,6 +165,9 @@
     (define-key org-mode-map (kbd "TAB") 'org-cycle)
     (define-key org-mode-map (kbd "<backtab>") 'org-shifttab))
 
+;; don't truncate lines by default
+(setq org-startup-truncated nil)
+
 ;; basic org-capture config
 (setq org-capture-templates
       '(("x" "test" plain (file "~/org/notes.org") "%T: %?")))