about summary refs log tree commit diff stats
path: root/.emacs.d/lisp/init-completion.el
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2023-08-15 16:37:58 +0100
committerDavid Morgan <djm_uk@protonmail.com>2023-08-15 16:37:58 +0100
commitbf1985cf6f56566eb2b212e5eeb83c541070824c (patch)
tree0142d2ee756a077541c141559b23076c0a7bc881 /.emacs.d/lisp/init-completion.el
parentf04b9afcfc5bbfd03dd872408f9e6c538d123b3d (diff)
downloaddotfiles-bf1985cf6f56566eb2b212e5eeb83c541070824c.tar.gz
Tweak completion settings (ignore case)
Diffstat (limited to '.emacs.d/lisp/init-completion.el')
-rw-r--r--.emacs.d/lisp/init-completion.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-completion.el b/.emacs.d/lisp/init-completion.el
index 8b6ba16..5928f27 100644
--- a/.emacs.d/lisp/init-completion.el
+++ b/.emacs.d/lisp/init-completion.el
@@ -46,9 +46,12 @@
   :bind ("M-/" . fancy-dabbrev-expand))
 
 (use-feature emacs
-  :init
+  :config
   (setq completion-cycle-threshold 3)
-  (setq tab-always-indent 'complete))
+  (setq tab-always-indent 'complete)
+  (setq read-buffer-completion-ignore-case t
+        read-file-name-completion-ignore-case t
+        completion-ignore-case t))
 
 (use-package orderless
   :defer 2