confi-emacs-actual/configs/lang-rust.el

20 lines
394 B
EmacsLisp
Raw Permalink Normal View History

2023-04-14 18:39:19 +02:00
;;; lang-rust.el --- Configuración para el lenguaje Rust -*- lexical-binding: t -*-
2022-05-06 23:29:24 +02:00
;; Author: kj <webmaster@outcontrol.net>
;; URL: https://git.kj2.me/kj/confi-emacs-actual
;;; Commentary:
2023-04-14 18:39:19 +02:00
;; Archivo de configuración para el lenguaje Rust
2022-05-06 23:29:24 +02:00
;;; Code:
(use-package rust-mode
:defer t
2022-05-18 09:08:59 +02:00
:ensure t
:config
(setq rust-format-on-save t))
2022-05-06 23:29:24 +02:00
(provide 'lang-rust)
;;; lang-rust.el ends here