17 lines
507 B
EmacsLisp
17 lines
507 B
EmacsLisp
;;; 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
|