summaryrefslogtreecommitdiff
path: root/.config/emacs
diff options
context:
space:
mode:
authorThomas Voss <thomas.voss@humanwave.nl> 2026-03-20 16:38:09 +0100
committerThomas Voss <thomas.voss@humanwave.nl> 2026-03-20 16:48:30 +0100
commit2aae06f23408be081a451de38111dd32c1cf07e7 (patch)
treee009beccb890d88bcf4397e8d9c8cdfc8761a441 /.config/emacs
parent754fccfdc4820e098f6ec53cc532b1aea52ce1d0 (diff)
emacs: Use global-completion-previde-mode
Diffstat (limited to '.config/emacs')
-rw-r--r--.config/emacs/modules/mm-completion.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/emacs/modules/mm-completion.el b/.config/emacs/modules/mm-completion.el
index 79da064..74740b4 100644
--- a/.config/emacs/modules/mm-completion.el
+++ b/.config/emacs/modules/mm-completion.el
@@ -158,4 +158,12 @@
:custom
(find-library-include-other-files nil))
-(provide 'mm-completion) \ No newline at end of file
+
+;;; Completion at Point Live Completions
+
+(use-package completion-preview
+ :hook (after-init . global-completion-preview-mode)
+ :custom
+ (completion-preview-minimum-symbol-length 1))
+
+(provide 'mm-completion)