summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/prog-lisp.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/prog-lisp.el b/modules/prog-lisp.el
index c68e04cfa..8f6af8936 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 ------------------------------