using require

This commit is contained in:
2023-05-16 11:18:38 +02:00
parent 8fdad944f9
commit 98ccb528ea
65 changed files with 5977 additions and 0 deletions

17
lisp/init-rust.el Normal file
View File

@@ -0,0 +1,17 @@
;; *** rust mode
(use-package rust-mode
:config
(defun rustlings-done ()
"I use this with rustlings"
(interactive)
(search-backward "DONE")
(move-beginning-of-line 1)
(kill-line)
(save-buffer))
:mode "\\.rs\\'")
(provide 'init-rust)
;;; init-rust.el ends here