dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 3f06e80b0dfbcefb7e2734f7f6816710f707a814
parent 2853dc612bd0c367ef2f1f5b0519569f89ae1d97
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Thu,  7 Jul 2022 23:25:37 +0200

emacs: use newest org

Diffstat:
Memacs/init.el | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/emacs/init.el b/emacs/init.el @@ -57,6 +57,12 @@ (require 'use-package-ensure) (setq use-package-always-ensure t) +;; Replace built-in Org with newest Org +;; See here: https://github.com/jwiegley/use-package/issues/319 +(assq-delete-all 'org package--builtins) +(assq-delete-all 'org package--builtin-versions) +(use-package org) + ;; Follow symlinks without prompting (the org file is a symlink) (setq vc-follow-symlinks t)