First commit.
This commit is contained in:
16
lisp/utilities/yasnippet.el
Normal file
16
lisp/utilities/yasnippet.el
Normal file
@@ -0,0 +1,16 @@
|
||||
;;; yasnippet.el --- Configuration for yasnippet -*- lexical-binding: t: -*-
|
||||
;;; Commentary: YASnippet is a template system for Emacs
|
||||
;;; Code:
|
||||
;;; Docs: https://github.com/joaotavora/yasnippet
|
||||
|
||||
(use-package yasnippet
|
||||
:ensure t
|
||||
:config
|
||||
(use-package yasnippet-snippets
|
||||
:ensure t)
|
||||
(define-key yas-minor-mode-map (kbd "<tab>") nil)
|
||||
(define-key yas-minor-mode-map (kbd "TAB") nil)
|
||||
(define-key yas-minor-mode-map (kbd "C-c y") yas-maybe-expand)
|
||||
(yas-global-mode 1))
|
||||
|
||||
;;; yasnippet.el ends here
|
Reference in New Issue
Block a user