Add Rusty Object Notation (RON) support to the Rust crate, predominantly used by the Amethyst Game Engine

This commit is contained in:
Daniel Hutzley 2020-08-08 20:09:38 -07:00 committed by Maximilian Wolff
parent 240de6fe4f
commit c8f7752dfe
1 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,7 @@
(flycheck-rust :requires flycheck)
ggtags
helm-gtags
(ron-mode :location (recipe :fetcher github :repo "nabero/ron-mode"))
racer
rust-mode
smartparens
@ -117,3 +118,8 @@
(defun rust/init-toml-mode ()
(use-package toml-mode
:mode "/\\(Cargo.lock\\|\\.cargo/config\\)\\'"))
(defun rust/init-ron-mode ()
(use-package ron-mode
:mode "\\.ron\\'" . ron-mode
:defer t))