Skip to content

Commit

Permalink
add skeleton-snippet and skeleton-snippet-store
Browse files Browse the repository at this point in the history
  • Loading branch information
wcy123 committed Jun 13, 2020
1 parent 12179b6 commit 2caf581
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,24 @@
:straight (hippie-exp :type built-in)
:bind ("M-?" . hippie-expand))

;; == leader-key-mode
(use-package skeleton-snippet
:straight
(skeleton-snippet :type git
:host github
:repo "wcy123/skeleton-snippet")
:bind (("C-]" . skeleton-snippet))
)
(use-package skeleton-snippet-store
:straight
(skeleton-snippet-store :type git
:host github
:files ("*.el" "snippets")
:repo "wcy123/skeleton-snippet-store")
:after (skeleton-snippet)
:config
(skeleton-snippet-store-initialize))

;; (use-package yasnippet
;; :after (prog-mode)
;; :defines (yas-minor-mode-map yas-maybe-expand)
Expand Down

0 comments on commit 2caf581

Please sign in to comment.