Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

4 years ago
  1. # -*- mode: snippet; -*-
  2. # contributor: kchenphy <https://www.github.com/kchenphy>
  3. # name: package header
  4. # key: header
  5. # --
  6. ;;; ${1:name}.el --- ${2:summary} -*- lexical-binding: t -*-
  7. ;; Author: ${3:`(user-full-name)`}
  8. ;; Maintainer: ${4:`(user-full-name)`}
  9. ;; Version: ${5:version}
  10. ;; Package-Requires: (${6:dependencies})
  11. ;; Homepage: ${7:homepage}
  12. ;; Keywords: ${8:keywords}
  13. ${9:
  14. ;; This file is not part of GNU Emacs
  15. ;; This file is free software; you can redistribute it and/or modify
  16. ;; it under the terms of the GNU General Public License as published by
  17. ;; the Free Software Foundation; either version 3, or (at your option)
  18. ;; any later version.
  19. ;; This program is distributed in the hope that it will be useful,
  20. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. ;; GNU General Public License for more details.
  23. ;; For a full copy of the GNU General Public License
  24. ;; see <http://www.gnu.org/licenses/>.
  25. }
  26. ;;; Commentary:
  27. ;; ${10:commentary}
  28. ;;; Code:
  29. ${11:(message "Hello World!")}
  30. (provide '$1)
  31. ;;; $1.el ends here