1
0
Fork 0
dotfiles/.emacs.d/include/racket.el
Lucas Sta Maria 7c75810123
refactor: organize emacs config
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2023-07-20 18:25:33 -07:00

14 lines
529 B
EmacsLisp

;;; 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