1
0
Fork 0

refactor: organize emacs config

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2023-07-20 18:25:33 -07:00
parent 5997e83b32
commit 7c75810123
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
7 changed files with 220 additions and 175 deletions

View file

@ -0,0 +1,14 @@
;;; racket.el --- Configuration for Racket.
;;; Commentary:
;; Configuration for Racket and Racket-based languages, including Pollen.
;;; Code:
(add-to-list 'load-path (expand-file-name "lisp/pollen-mode" user-emacs-directory))
(autoload 'pollen-mode "pollen" "A major mode for the pollen preprocessor." t)
;; Recognize pollen filetypes
(setq auto-mode-alist (cons '("\\.pp$" . racket-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.pm$" . racket-mode) auto-mode-alist))
(provide 'racket)
;;; racket.el ends here