From c377f38c23594c7a8a2813a412ef5e49755762e5 Mon Sep 17 00:00:00 2001 From: Thomas Ulmer Date: Mon, 29 Dec 2025 15:02:07 -0800 Subject: emacs: completion case ignore + avy --- emacs/init.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'emacs/init.el') diff --git a/emacs/init.el b/emacs/init.el index f1f836d..07bc75d 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -292,6 +292,10 @@ current layout." :custom (orderless-skip-highlighting t) (completion-styles '(orderless basic)) + (completion-ignore-case t) + (read-file-name-completion-ignore-case t) + (read-buffer-completion-ignore-case t) + (orderless-smart-case nil) (orderless-matching-styles '(orderless-prefixes orderless-initialism orderless-literal orderless-regexp))) @@ -477,7 +481,6 @@ current layout." (prog-mode . hl-todo-mode)) (use-package visible-mark ; make the mark visible - ;; TODO make the attr list display dependent :demand t :custom-face (visible-mark-active @@ -493,7 +496,10 @@ current layout." (use-package avy ; goto location by char pair and jump list :bind (("C-'" . avy-goto-char-2) - ("M-G" . avy-goto-char-2))) + ("M-G" . avy-goto-char-2)) + :custom + (avy-all-windows nil) + (avy-all-windows-alt 'all-frames)) (use-package balanced-windows ; auto rebalance windows :bind ("C-x w b" . balanced-windows-mode)) -- cgit v1.2.3