From 0f0582c18422c7053f6705bf89a27996bedc2333 Mon Sep 17 00:00:00 2001 From: Joseph Ferano Date: Tue, 23 Jul 2024 15:35:42 +0700 Subject: [PATCH] Emacs: Olivetti width for puter --- .config/emacs/init.org | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.config/emacs/init.org b/.config/emacs/init.org index aecf62d..757f84e 100644 --- a/.config/emacs/init.org +++ b/.config/emacs/init.org @@ -353,7 +353,10 @@ Use Dashboard.el. First load `all-the-icons` for nicer rendering #+begin_src emacs-lisp (require 'olivetti) -(setq olivetti-minimum-body-width 100) +(if (equal "flowjoe-f37" (system-name)) + (setq olivetti-minimum-body-width 100) + (setq olivetti-minimum-body-width 120)) + (global-set-key (kbd "C-x x o") 'olivetti-mode) (add-hook 'prog-mode-hook 'olivetti-mode) #+end_src