init-crystal.el 404 B

1234567891011121314151617
  1. ;;; init-crystal.el --- .Emacs Configuration -*- lexical-binding: t -*-
  2. ;;; Commentary:
  3. ;;
  4. ;;; Code:
  5. ;;----------------------------------------------------------------------------
  6. ;; Crystal Mode
  7. ;;----------------------------------------------------------------------------
  8. (use-package crystal-mode
  9. :mode ("\\.cr\\'" . crystal-mode))
  10. (provide 'init-crystal)
  11. ;; End:
  12. ;;; init-crystal.el ends here