Moving all of my Emacs-related files into their own directory at the root of this repository.
		
			
				
	
	
		
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			160 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			No EOL
		
	
	
		
			160 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # -*- mode: snippet -*-
 | |
| # name: Define package
 | |
| # key: defp
 | |
| # --
 | |
| (in-package #:cl-user)
 | |
| (defpackage #:$1
 | |
|   (:documentation "$2")
 | |
|   (:use #:cl))
 | |
| (in-package #:$1) |