From ee92c6100fd18a80309bcaa86d1cbc20f8f2cd49 Mon Sep 17 00:00:00 2001 From: yuzu-eva Date: Fri, 23 Dec 2022 21:20:52 +0100 Subject: added a bunch of stuff and relocated some files --- .emacs.d/config.el | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.emacs.d/config.el') diff --git a/.emacs.d/config.el b/.emacs.d/config.el index c546588..a46bca5 100644 --- a/.emacs.d/config.el +++ b/.emacs.d/config.el @@ -3,6 +3,14 @@ (add-hook 'emacs-startup-hook 'startup/revert-file-name-handler-alist) (add-hook 'emacs-startup-hook 'startup/reset-gc) +;; dirty fix for having AC everywhere +(define-globalized-minor-mode real-global-auto-complete-mode + auto-complete-mode (lambda () + (if (not (minibufferp (current-buffer))) + (auto-complete-mode 1)) + )) +(real-global-auto-complete-mode t) + ;; Mutt support (add-to-list 'auto-mode-alist '("/tmp/mutt.*" . mail-mode)) -- cgit v1.2.3