home · contact · privacy
Don't emacs-truncate lines by default.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 11 Nov 2019 21:03:40 +0000 (22:03 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 11 Nov 2019 21:03:40 +0000 (22:03 +0100)
buster/home_files/user/.emacs.d/init.el

index 3452126e77d4a2322bdb0c9ec97661e20369e8c7..f9ae44ef1ca28182aa44c09936521eb46721666a 100644 (file)
@@ -90,7 +90,6 @@
       delete-old-versions 1)  ;; neither t nor nil: never delete
 
 
-
 ;; package management
 ;; ==================
 
     (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: %?")))