dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

commit 5dc866eed67306c4dd522c169a62769d51644e2f
parent 5d1feb5abdddc6ffc99acf07f04f39bffef5efbc
Author: Lukas Henkel <lh@entf.net>
Date:   Thu, 31 Mar 2022 22:28:34 +0200

Emacs 29 wants to do this

Diffstat:
Minit.el | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/init.el b/init.el @@ -166,6 +166,7 @@ '(bookmark-completion-ignore-case nil) '(column-number-mode t) '(company-idle-delay 0) + '(completion-ignore-case t t) '(completion-styles '(basic substring initials flex)) '(corfu-auto t) '(corfu-auto-delay 0.0) @@ -181,7 +182,12 @@ '(kept-new-versions 10) '(kept-old-versions 5) '(mouse-wheel-progressive-speed nil) - '(org-babel-load-languages '((awk . t) (lisp . t) (shell . t) (emacs-lisp . t) (http . t))) + '(org-babel-load-languages + '((awk . t) + (lisp . t) + (shell . t) + (emacs-lisp . t) + (http . t))) '(org-log-done 'time) '(org-log-done-with-time t) '(org-src-window-setup 'other-window)