This commit is contained in:
John Doty 2019-04-01 12:03:20 -07:00
parent ec6bf12ded
commit 27f96a1bd1
2 changed files with 12 additions and 1 deletions

View file

@ -58,7 +58,7 @@
((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED")))) ((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED"))))
'(package-selected-packages '(package-selected-packages
(quote (quote
(filladapt vc-hgcmd lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode zencoding-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-solarized color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide ahg elm-mode monky))) (rust-mode filladapt vc-hgcmd lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode zencoding-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-solarized color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide ahg elm-mode monky)))
'(reb-re-syntax (quote string)) '(reb-re-syntax (quote string))
'(rmail-mail-new-frame t) '(rmail-mail-new-frame t)
'(safe-local-variable-values '(safe-local-variable-values

View file

@ -867,4 +867,15 @@
(require 'fb-note-publish))) (require 'fb-note-publish)))
(add-hook 'markdown-mode-hook 'my-markdown-mode-hook) (add-hook 'markdown-mode-hook 'my-markdown-mode-hook)
;; =================================================================
;; Rust
;; =================================================================
(use-package rust-mode :ensure t
:mode "\\.rs\\'"
:config
(setq rust-format-on-save t))
;;; init.el ends here ;;; init.el ends here