From 6b5666c2271e8dcec889bff8f7aea0328da14746 Mon Sep 17 00:00:00 2001 From: Yoav Orot Date: Sat, 26 Jun 2021 14:02:10 +0300 Subject: [PATCH] Set line truncation for all buffers --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index 44df98a50..2e3f9c858 100644 --- a/init.el +++ b/init.el @@ -877,6 +877,9 @@ run the attached function (if exists) and enable lsp" ;; Show time in the modeline (display-time-mode 1) +;; Truncate lines by default +(setq truncate-lines t) + ;; Show trailing whitespaces in code (require 'whitespace) (setq whitespace-style '(face trailing))