Add rust lang.

This commit is contained in:
kj
2022-05-06 17:29:24 -04:00
parent 9cddf59c1d
commit d1c00e505c
4 changed files with 34 additions and 5 deletions

22
configs/lang-rust.el Normal file
View File

@ -0,0 +1,22 @@
;;; lang-rust.el --- Configuración para el lenguaje PHP
;; Author: kj <webmaster@outcontrol.net>
;; URL: https://git.kj2.me/kj/confi-emacs-actual
;;; Commentary:
;;; Code:
(use-package rust-mode
:defer t
:ensure t)
(use-package rustic
:defer t
:ensure t
:config
(setq rustic-lsp-client nil)
(push 'rustic-clippy flycheck-checkers))
(provide 'lang-rust)
;;; lang-rust.el ends here