From a32f54fbfe41f54e2423dd49cd03fd0604e49d26 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sun, 2 Jun 2024 16:51:14 -0700 Subject: [PATCH] Changed visual fill column width --- dotfiles/.emacs.d/org.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.emacs.d/org.org b/dotfiles/.emacs.d/org.org index 0500282..3310ad6 100644 --- a/dotfiles/.emacs.d/org.org +++ b/dotfiles/.emacs.d/org.org @@ -109,7 +109,7 @@ Visual fill column is a package that allows you to center text and add borders t #+begin_src emacs-lisp ;; Set left-right margins with visual-fill-column (defun jm/org-mode-visual-fill () - (setq visual-fill-column-width 100 + (setq visual-fill-column-width 160 visual-fill-column-center-text t) (visual-fill-column-mode 1))