aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-crystal.el
blob: 462b9023a5b0f543854b1f3af33da140a98a1025 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; init-crystal.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;

;;; Code:

;;----------------------------------------------------------------------------
;; Crystal Mode
;;----------------------------------------------------------------------------
(use-package crystal-mode
  :mode ("\\.cr\\'" . crystal-mode))

(provide 'init-crystal)

;; End:
;;; init-crystal.el ends here