Skip to content

Commit

Permalink
Update dotfiles (TxGVNN/oops)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 4, 2023
1 parent 40b2fcc commit cf33295
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .emacs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit cf33295

Please sign in to comment.