From 9ae35c95aa94ba885f596186a1a30fcc440d3464 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 10 May 2025 12:55:13 -0500 Subject: wrap lisp code at 120 --- modules/prog-lisp.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/prog-lisp.el b/modules/prog-lisp.el index c68e04cf..8f6af893 100644 --- a/modules/prog-lisp.el +++ b/modules/prog-lisp.el @@ -40,8 +40,8 @@ "My default code preferences for emacs-lisp." (setq-default tab-width 4) ;; set the tab width to 4 spaces (setq-default indent-tabs-mode -1) ;; disable tab characters - (setq-default fill-column 80) ;; default column for gnu projects - (display-fill-column-indicator-mode)) ;; show where the 80th column is + (setq-default fill-column 120) ;; wrap code at this column + (display-fill-column-indicator-mode)) ;; show where the fill-column is (add-hook 'emacs-lisp-mode-hook 'cj/elisp-setup) ;; ------------------------------ Emacs Lisp REPL ------------------------------ -- cgit v1.2.3