Calling this pivotal macro "def-package!" has frequently been a source of confusion. It is a thin wrapper around use-package, and it should be obvious that it is so. For this reason, and to match the naming convention used with other convenience macros/wrappers, it is now use-package!. Also changes def-package-hook! -> use-package-hook! The old macros are now marked obsolete and will be removed when straight integration is merged.
85 lines
3.2 KiB
EmacsLisp
85 lines
3.2 KiB
EmacsLisp
;;; editor/snippets/config.el -*- lexical-binding: t; -*-
|
|
|
|
(defvar +snippets-dir (expand-file-name "snippets/" doom-private-dir)
|
|
"Directory where `yasnippet' will search for your private snippets.")
|
|
|
|
|
|
;;
|
|
;; Packages
|
|
|
|
(use-package! yasnippet
|
|
:commands (yas-minor-mode-on
|
|
yas-expand
|
|
yas-expand-snippet
|
|
yas-lookup-snippet
|
|
yas-insert-snippet
|
|
yas-new-snippet
|
|
yas-visit-snippet-file)
|
|
:init
|
|
;; Ensure `yas-reload-all' is called as late as possible. Other modules could
|
|
;; have additional configuration for yasnippet. For example, file-templates.
|
|
(add-transient-hook! 'yas-minor-mode-hook (yas-reload-all))
|
|
|
|
(add-hook! (text-mode prog-mode conf-mode snippet-mode)
|
|
#'yas-minor-mode-on)
|
|
|
|
:config
|
|
(setq yas-verbosity (if doom-debug-mode 3 0)
|
|
yas-also-auto-indent-first-line t
|
|
;; Remove default ~/.emacs.d/snippets
|
|
yas-snippet-dirs (delete yas--default-user-snippets-dir
|
|
yas-snippet-dirs))
|
|
|
|
;; default snippets library, if available
|
|
(require 'doom-snippets nil t)
|
|
|
|
;; Allow private snippets in DOOMDIR/snippets
|
|
(add-to-list 'yas-snippet-dirs '+snippets-dir nil #'eq)
|
|
|
|
;; Remove GUI dropdown prompt (prefer ivy/helm)
|
|
(delq! 'yas-dropdown-prompt yas-prompt-functions)
|
|
;; Prioritize private snippets in `+snippets-dir' over built-in ones if there
|
|
;; are multiple choices.
|
|
(add-to-list 'yas-prompt-functions #'+snippets-prompt-private nil #'eq)
|
|
|
|
;; Register `def-project-mode!' modes with yasnippet. This enables project
|
|
;; specific snippet libraries (e.g. for Laravel, React or Jekyll projects).
|
|
(add-hook 'doom-project-hook #'+snippets|enable-project-modes)
|
|
|
|
;; Exit snippets on ESC from normal mode
|
|
(add-hook 'doom-escape-hook #'yas-abort-snippet)
|
|
|
|
(after! smartparens
|
|
;; tell smartparens overlays not to interfere with yasnippet keybinds
|
|
(advice-add #'yas-expand :before #'sp-remove-active-pair-overlay))
|
|
|
|
;; Enable `read-only-mode' for built-in snippets (in `doom-local-dir')
|
|
(add-hook 'snippet-mode-hook #'+snippets|read-only-maybe)
|
|
|
|
;; (Evil only) fix off-by-one issue with line-wise visual selections in
|
|
;; `yas-insert-snippet', and switches to insert mode afterwards.
|
|
(advice-add #'yas-insert-snippet :around #'+snippets*expand-on-region)
|
|
|
|
(define-key! snippet-mode-map
|
|
"C-c C-k" #'+snippet--abort
|
|
"C-c C-e" #'+snippet--edit)
|
|
(add-hook 'snippet-mode-hook #'+snippets|show-hints-in-header-line)
|
|
|
|
;; Replace commands with superior alternatives
|
|
(define-key! yas-minor-mode-map
|
|
[remap yas-new-snippet] #'+snippets/new
|
|
[remap yas-visit-snippet-file] #'+snippets/edit))
|
|
|
|
|
|
(use-package! auto-yasnippet
|
|
:defer t
|
|
:init (setq aya-persist-snippets-dir (concat doom-etc-dir "auto-snippets/"))
|
|
:config
|
|
(def-advice! +snippets-inhibit-yas-global-mode (orig-fn &rest args)
|
|
"auto-yasnippet enables `yas-global-mode'. This is obnoxious for folks like
|
|
us who use yas-minor-mode and enable yasnippet more selectively. This advice
|
|
swaps `yas-global-mode' with `yas-minor-mode'."
|
|
:around '(aya-expand aya-open-line)
|
|
(cl-letf (((symbol-function #'yas-global-mode) #'yas-minor-mode)
|
|
(yas-global-mode yas-minor-mode))
|
|
(apply orig-fn args))))
|