Use fancy-dabbrev-expand

This commit is contained in:
David Morgan 2022-07-19 16:03:49 +01:00
parent ef2eefa6d5
commit 5ca6bcbcc3
1 changed files with 6 additions and 4 deletions

View File

@ -6,9 +6,10 @@
(use-package dabbrev
:diminish
:custom (dabbrev-case-fold-search nil)
:bind
("M-/" . dabbrev-completion))
:custom
(setq dabbrev-case-distinction nil)
(setq dabbrev-case-fold-search t)
(setq dabbrev-case-replace nil))
(use-package hippie-expand
:ensure nil
@ -37,7 +38,8 @@
(use-package fancy-dabbrev
:diminish
:config
(global-fancy-dabbrev-mode))
(global-fancy-dabbrev-mode)
:bind ("M-/" . fancy-dabbrev-expand))
(use-package emacs
:init