dotfiles/editors/emacs/init.el

63 lines
2.1 KiB
EmacsLisp
Raw Normal View History

(require 'cl) ; needed for powerline
2012-08-18 13:24:55 +10:00
(require 'package)
(add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/") t)
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)
(when (not package-archive-contents)
(package-refresh-contents))
;; Add in your own as you wish:
2013-03-10 16:42:11 +11:00
(defvar my-packages '(ac-nrepl
auto-complete
autopair
2012-08-18 13:24:55 +10:00
clojure-mode
2012-10-24 01:17:57 +11:00
clojure-test-mode
clojurescript-mode
2012-08-18 13:24:55 +10:00
color-theme
2012-10-29 06:03:47 +11:00
color-theme-sanityinc-tomorrow
2012-08-18 13:24:55 +10:00
ctags
2013-03-10 16:42:11 +11:00
evil
evil-paredit
exec-path-from-shell
find-file-in-repository
2013-04-04 14:13:13 +11:00
go-mode
2013-03-10 16:42:11 +11:00
markdown-mode
2012-08-18 13:24:55 +10:00
paredit
powerline
2013-03-10 16:42:11 +11:00
rainbow-delimiters
ruby-electric
ruby-end
ruby-tools
starter-kit
starter-kit-eshell
starter-kit-js
starter-kit-lisp
starter-kit-ruby
surround
undo-tree
yasnippet)
2012-08-18 13:24:55 +10:00
"A list of packages to ensure are installed at launch.")
(dolist (p my-packages)
(when (not (package-installed-p p))
(package-install p)))
;; This takes a really long time because ZSH init scripts are TOO slow!
;; Thoughts:
;; * Extract a lot of non-interactive ZSH stuff to spawn from
;; .zshenv and adjust exec-path-from-shell to not start interactive
;; shell
(when (memq window-system '(mac ns))
(exec-path-from-shell-initialize))
;; TODO:
;; * Go snippets
;; * Custom ruby/rspec snippetts
;; * proper auto-complete / intellisense
;; * auto pop-up (~100ms)
;; * intuitive TAB/ENTER support
;; * can be backed by REPL, ctags, buffer words, etc
;; * Plug snippets into auto-complete