summaryrefslogtreecommitdiff
path: root/emacs.d/init.el
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-10-29 13:17:26 -0700
committerFranck Cuny <franck.cuny@gmail.com>2016-10-29 13:17:26 -0700
commitd4d29bfceba55de8d792606435aec2b7af6a10ab (patch)
tree83aa33c106c69ebe88aed5ba53d4e26e8695cc82 /emacs.d/init.el
parent[emacs] REPL for racket is in a container. (diff)
downloademacs.d-d4d29bfceba55de8d792606435aec2b7af6a10ab.tar.gz
[emacs] Ensure a few packages are indeed installed
Diffstat (limited to '')
-rw-r--r--emacs.d/init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 698b372..45874a1 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -135,6 +135,7 @@
ispell-list-command "--list"))
(use-package geiser
+ :ensure t
:config
(progn
(setq geiser-default-implementation 'racket
@@ -145,6 +146,7 @@
:bind ("C-c G" . gist-region-or-buffer))
(use-package go-mode
+ :ensure t
:init
(progn
(use-package go-eldoc
@@ -207,6 +209,7 @@
(setq json-reformat:indent-width 2))
(use-package magit
+ :ensure t
:bind ("C-x g" . magit-status)
:config
(add-hook 'magit-log-edit-mode-hook
@@ -245,6 +248,7 @@
("C-c t" . pants-run-test)))
(use-package projectile
+ :ensure t
:diminish projectile-mode
:bind-keymap ("C-c p" . projectile-command-map)
@@ -257,6 +261,7 @@
(use-package puppet-mode
:mode ("\\.pp\\'" . puppet-mode)
+ :ensure t
:init (add-hook 'puppet-mode-hook 'flycheck-mode)
:config
(setq flycheck-puppet-lint-rc "/Users/fcuny/src/twitter-ops/utilities/puppet/.puppet-lint.rc"))