summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorbenj <benj@rse8.com>2019-05-26 15:34:41 -0700
committerbenj <benj@rse8.com>2019-05-26 15:34:41 -0700
commit8b90d268a5396f656c0a1407cd4e010adc7a519f (patch)
tree5a47c110b4f3b20585716aa8881d39d3fb70771f /init.el
parentfaeeda87a3a4f615ba57411175581265eddc1a7c (diff)
downloademacs-8b90d268a5396f656c0a1407cd4e010adc7a519f.tar
emacs-8b90d268a5396f656c0a1407cd4e010adc7a519f.tar.gz
emacs-8b90d268a5396f656c0a1407cd4e010adc7a519f.tar.bz2
emacs-8b90d268a5396f656c0a1407cd4e010adc7a519f.tar.lz
emacs-8b90d268a5396f656c0a1407cd4e010adc7a519f.tar.xz
emacs-8b90d268a5396f656c0a1407cd4e010adc7a519f.tar.zst
emacs-8b90d268a5396f656c0a1407cd4e010adc7a519f.zip
rust and go updates
Diffstat (limited to '')
-rw-r--r--init.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/init.el b/init.el
index 94ccc87..9e76047 100644
--- a/init.el
+++ b/init.el
@@ -31,7 +31,7 @@
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
-;;(package-initialize)
+(package-initialize)
(setq inhibit-startup-message t)
@@ -48,6 +48,7 @@
(defun init-install-packages()
(packages-install
'(ace-window
+ cargo
cider
company
company-c-headers
@@ -64,6 +65,7 @@
ember-mode
ensime
erlang
+ exec-path-from-shell
flx-ido
flycheck
flycheck-clangcheck
@@ -89,6 +91,7 @@
purescript-mode
org-bullets
rust-mode
+ rust-playground
sbt-mode
scala-mode
slime
@@ -146,8 +149,10 @@
(require 'setup-markdown-mode)
(require 'setup-multiple-cursors)
(require 'setup-org-mode)
+(require 'setup-plz-mode)
(require 'setup-projectile-mode)
(require 'setup-purescript-mode)
+(require 'setup-rust-mode)
(require 'setup-scala-mode)
(require 'setup-slime-mode)
(require 'setup-treemacs)
@@ -158,6 +163,7 @@
;; utility globals
(require 'fetch-includes)
+(exec-path-from-shell-initialize)
;; full power
(put 'downcase-region 'disabled nil)