summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el10
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))