about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-10-14 12:26:19 +0100
committerDavid Morgan <djm_uk@protonmail.com>2022-10-14 12:26:19 +0100
commit05edd37e19bdaeaab6baeccbbb1b1db3e1ab80b0 (patch)
tree4193525f3675e24892684bb65704b869c2fd9397
parent7f2a489654fb612c3ce4ed58a5f7e497b0aed40e (diff)
downloaddotfiles-05edd37e19bdaeaab6baeccbbb1b1db3e1ab80b0.tar.gz
Fix dabbrev config
-rw-r--r--.emacs.d/lisp/init-completion.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/.emacs.d/lisp/init-completion.el b/.emacs.d/lisp/init-completion.el
index ce66ddb..9186d98 100644
--- a/.emacs.d/lisp/init-completion.el
+++ b/.emacs.d/lisp/init-completion.el
@@ -4,12 +4,12 @@
 ;; Most of it is taken from the READMEs and wikis of those packages
 ;;; Code:
 
-(use-package dabbrev
+(use-feature dabbrev
   :diminish
   :custom
-  (setq dabbrev-case-distinction nil)
-  (setq dabbrev-case-fold-search t)
-  (setq dabbrev-case-replace nil))
+  (dabbrev-case-distinction nil)
+  (dabbrev-case-fold-search t)
+  (dabbrev-case-replace nil))
 
 (use-feature hippie-expand
   :init