Tweak completion settings (ignore case)

This commit is contained in:
David Morgan 2023-08-15 16:37:58 +01:00
parent f04b9afcfc
commit bf1985cf6f
Signed by: djm
GPG Key ID: C171251002C200F2
1 changed files with 5 additions and 2 deletions

View File

@ -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