diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-29 15:02:07 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-29 15:02:07 -0800 |
| commit | c377f38c23594c7a8a2813a412ef5e49755762e5 (patch) | |
| tree | 6609745b37094c5c085e4b68a80b2a4943e2b7a3 /emacs | |
| parent | 784611e602954789b29d86295ad64f3de76d6721 (diff) | |
emacs: completion case ignore + avy
Diffstat (limited to 'emacs')
| -rw-r--r-- | emacs/init.el | 10 |
1 files changed, 8 insertions, 2 deletions
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)) |
