diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-04 11:12:56 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-04 11:12:56 +0100 |
commit | 09c670cff5d159270eb1e21cb10da22e52d60d65 (patch) | |
tree | c6f1d7dd76aad1c6cb8129af823e85bea4b7c4dd /systems | |
parent | 36d8fba7bc030ef53924db2c1017d4d2b6b27716 (diff) |
Improve content width handling in Emacs
Diffstat (limited to 'systems')
-rw-r--r-- | systems/izumi/home-files/emacs-configuration.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/systems/izumi/home-files/emacs-configuration.el b/systems/izumi/home-files/emacs-configuration.el index b777cf1..6be9834 100644 --- a/systems/izumi/home-files/emacs-configuration.el +++ b/systems/izumi/home-files/emacs-configuration.el @@ -30,13 +30,13 @@ (setq-default inhibit-startup-screen t) ;; Enable the column-80 line -(setq-default display-fill-column-indicator 1 - display-fill-column-indicator-column t - fill-column 80) +(setq-default display-fill-column-indicator-column 70 + fill-column 80 + auto-fill-function 'do-auto-fill) (global-display-fill-column-indicator-mode) ;;; Enable Org Modern Style -;(with-eval-after-load 'org (global-org-modern-mode)) + ;(with-eval-after-load 'org (global-org-modern-mode)) ;; Prepare Literate Programming (setq-default |