From cf3329569380e1f3379a4d75e0c0f37ca3fbc583 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 4 Oct 2023 00:25:59 +0000 Subject: [PATCH] Update dotfiles (TxGVNN/oops) --- .emacs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.emacs b/.emacs index 21b49b4..1e1561e 100644 --- a/.emacs +++ b/.emacs @@ -18,7 +18,7 @@ (add-hook 'emacs-startup-hook (lambda () (setq file-name-handler-alist doom--file-name-handler-alist))) -(defvar emacs-config-version "20230928.1405") +(defvar emacs-config-version "20231002.0159") (defvar hidden-minor-modes '(whitespace-mode)) (require 'package) @@ -541,7 +541,6 @@ :ensure t :defer t :hook (after-init . beacon-mode) :config (add-to-list 'hidden-minor-modes 'beacon-mode)) - ;;; COMPLETION CODE: corfu, yasnippet, eglot, dumb-jump, pcmpl-args (use-package corfu @@ -553,13 +552,14 @@ (corfu-cycle t) (corfu-preselect-first nil) (corfu-history-mode t) - (corfu-exclude-modes '(shell-mode eshell-mode comint-mode)) (corfu-bar-width 0) (corfu-right-margin-width 0) - :init (global-corfu-mode) - :hook ((shell-mode . corfu-echo-mode) - (eshell-mode . corfu-echo-mode) - (comint-mode . corfu-echo-mode)) + :hook + ((shell-mode . corfu-echo-mode) + (eshell-mode . corfu-echo-mode) + (comint-mode . corfu-echo-mode) + (prog-mode . corfu-mode) + (text-mode . corfu-mode)) :bind (:map corfu-map ("M-m" . corfu-move-to-minibuffer)