all repos — nixfiles @ e38fee1693ed284c283d92a4d7db00ad3280e86f

System and user configuration, managed by nix and home-manager

emacs: use tempel for snippet expansion
Alan Pearce alan@alanpearce.eu
Wed, 24 Apr 2024 18:53:09 +0200
commit

e38fee1693ed284c283d92a4d7db00ad3280e86f

parent

2276c22e9582f80127b497de16fe115a90263771

2 files changed, 29 insertions(+), 4 deletions(-)

jump to
M user/emacs/init.eluser/emacs/init.el
@@ -404,8 +404,7 @@ (use-package evil-collection   :demand t
   :config (progn
             (setq evil-collection-magit-use-y-for-yank nil
-                  evil-collection-corfu-key-themes '(tab-n-go
-                                                     magic-return))
+                  evil-collection-corfu-key-themes '(default magic-return))
             (general-unbind 'normal magit-mode-map
               "<escape>")
             (evil-collection-init)))
@@ -527,7 +526,9 @@ :config (progn             (global-corfu-mode +1)
             (setq corfu-auto t
                   corfu-auto-delay 0.1
-                  corfu-auto-prefix 3)
+                  corfu-auto-prefix 3
+                  corfu-on-exact-match nil
+                  corfu-preselect 'valid)
             (defun corfu-enable-in-minibuffer ()
               "Enable Corfu in the minibuffer if `completion-at-point' is bound."
               (when (where-is-internal #'completion-at-point (list (current-local-map)))
@@ -571,6 +572,15 @@ :init (progn           (advice-add 'tabnine-start-process :around #'quiet)
 
           (add-hook 'kill-emacs-hook #'tabnine-kill-process)))
+
+(use-package tempel
+  :bind (("M-+" . tempel-complete) ;; Alternative tempel-expand
+         ("M-*" . tempel-insert))
+  :config (progn
+            (global-tempel-abbrev-mode +1)))
+
+(use-package tempel-collection
+  :after tempel)
 
 ;;; Documentation
 
@@ -1056,7 +1066,19 @@ (add-hook 'eglot-managed-mode-hook 'my/setup-eglot-eldoc)             (setq-default eglot-workspace-configuration
                           '(:yaml (:keyOrdering nil)
                                   :nix (:autoArchive t))
-                          eglot-ignored-server-capabilities '(:documentHighlightProvider))))
+                          eglot-ignored-server-capabilities '(:documentHighlightProvider))
+            (defun my/eglot-capf ()
+              (setq-local completion-at-point-functions
+                          (list (cape-capf-super
+                                 #'eglot-completion-at-point
+                                 #'tempel-expand
+                                 #'cape-file))))
+            (add-hook 'eglot-managed-mode-hook #'my/eglot-capf)))
+
+(use-package eglot-tempel
+  :after eglot
+  :config (progn
+            (eglot-tempel-mode +1)))
 
 (use-package consult-eglot
   :commands (consult-eglot-symbols)
M user/settings/emacs.nixuser/settings/emacs.nix
@@ -145,6 +145,9 @@ rainbow-mode         rainbow-delimiters
         stimmung-themes
         systemd
+        tempel
+        tempel-collection
+        eglot-tempel
         toml-mode
         treesit-grammars.with-all-grammars
         vc-msg