Browse Source

rust on emacs

master
Julio Biason 6 years ago
parent
commit
0aca75fc82
  1. 13
      emacs/emacs

13
emacs/emacs

@ -3,10 +3,11 @@
(require 'package)
;;; either the stable version:
(add-to-list 'package-archives
;; choose either the stable or the latest git version:
;; '("melpa-stable" . "http://melpa-stable.org/packages/")
'("melpa-unstable" . "http://melpa.org/packages/"))
(add-to-list
'package-archives
;; '("melpa" . "http://stable.melpa.org/packages/") ; many packages won't show if using stable
'("melpa" . "http://melpa.milkbox.net/packages/")
t)
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
@ -33,7 +34,7 @@
'(inhibit-startup-screen t)
'(package-selected-packages
(quote
(evil-quickscope evil-tabs ## scala-mode evil-leader editorconfig diff-hl neotree helm-ag helm-projectile projectile helm hlinum fill-column-indicator evil mustang-theme cider))))
(rust-mode evil-quickscope evil-tabs ## scala-mode evil-leader editorconfig diff-hl neotree helm-ag helm-projectile projectile helm hlinum fill-column-indicator evil mustang-theme cider))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
@ -104,6 +105,8 @@
:interpreter
("scala" . scala-mode))
; rust support
; neotree is a nerdtree like
(use-package neotree :ensure t)

Loading…
Cancel
Save