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.

19 lines
291 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: header
  3. # key: he
  4. # --
  5. declare name "$1";
  6. declare version "${2:0.1}";
  7. declare author "$3";
  8. declare license "${4:$$
  9. (yas-choose-value '(
  10. "AGPLv3"
  11. "Apache"
  12. "BSD 2-clause"
  13. "BSD 3-clause"
  14. "GPLv2"
  15. "GPLv3"
  16. "LGPLv3"
  17. "MIT"
  18. ))}";
  19. $0