From b140d4a89279ba18d357de2ee9c68476c18b42db Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 4 Feb 2021 15:55:33 -0500 Subject: [PATCH] Small image sizes in org mode --- README.org | 8 +++++++- modules/core.el | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 20c1960..4ee99ce 100644 --- a/README.org +++ b/README.org @@ -7,7 +7,7 @@ #+ATTR_ORG: :width 420px #+ATTR_HTML: :width 420px #+ATTR_LATEX: :width 420px -[[./docs/images/desktop.png]] +[[./docs/images/desktop-alt.png]] Immutable GNU Emacs dotfiles. Built for Life, Liberty, and the Open Road. + 100% Literate @@ -261,6 +261,7 @@ Emacs' default user interface is horrendous, but with less than 10 lines of code :custom (org-ellipsis " ▾") (org-log-done 'time) (org-log-into-drawer t) + (org-image-actual-width nil) (org-directory dotfiles/home) (org-src-preserve-indentation t) :config (require 'org-tempo) @@ -1231,6 +1232,11 @@ Toggle global ligature mode with =SPC t g=. *** Dashboard +#+ATTR_ORG: :width 420px +#+ATTR_HTML: :width 420px +#+ATTR_LATEX: :width 420px +[[./docs/images/desktop.png]] + Present a dashboard when first launching Emacs. #+begin_src emacs-lisp diff --git a/modules/core.el b/modules/core.el index 8765d5c..2b50e54 100644 --- a/modules/core.el +++ b/modules/core.el @@ -39,6 +39,7 @@ :custom (org-ellipsis " ▾") (org-log-done 'time) (org-log-into-drawer t) + (org-image-actual-width nil) (org-directory dotfiles/home) (org-src-preserve-indentation t) :config (require 'org-tempo)