diff options
author | Franck Cuny <franck@fcuny.net> | 2022-10-17 18:27:04 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-10-17 18:27:04 -0700 |
commit | af9232821475db2b4bf5ca9aac07056facb9e4e1 (patch) | |
tree | db9f97e2b52baf328a31b068cf7e71914346df23 | |
parent | ref(edit): reorganize the module (diff) | |
download | emacs.d-af9232821475db2b4bf5ca9aac07056facb9e4e1.tar.gz |
ref(prog): wrap comments at column 120
Change-Id: Idd2b673af070b7cca02b1e62d6a3c40bdad1b7ec
-rw-r--r-- | emacs/custom/my-prog.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/custom/my-prog.el b/emacs/custom/my-prog.el index c20293e..a8ecf45 100644 --- a/emacs/custom/my-prog.el +++ b/emacs/custom/my-prog.el @@ -23,9 +23,9 @@ (dolist (hook '(prog-mode-hook conf-mode-hook org-mode-hook)) (add-hook hook 'yas-minor-mode)) -;; I want comments to be wrapped at column 80 +;; where to wrap comments (require 'newcomment) -(setq comment-fill-column 80) +(setq comment-fill-column 120) (setq comment-auto-fill-only-comments t) (dolist (hook '(prog-mode-hook conf-mode-hook)) |