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.

10 lines
256 B

4 years ago
  1. # -*- mode: snippet -*-
  2. # name: defpackage
  3. # key: defp
  4. # --
  5. (defpackage #:${1:name}
  6. (:nicknames #:${2:nick})
  7. (:use #:cl #:closer-mop #:${3:package})
  8. (:shadow :${4.symbol})
  9. (:shadowing-import-from #:${5:package} #:${6:symbol})
  10. (:export :$0))