[emacs] Add projmake-mode for erlang

This commit is contained in:
Correl Roush 2013-05-31 21:33:34 -04:00
parent 5fecaf2c55
commit 6906769972
2 changed files with 7 additions and 0 deletions

View file

@ -18,6 +18,7 @@
;; Erlang
(depends-on "erlang")
(depends-on "projmake-mode")
;; Haskell
(depends-on "haskell-mode")

View file

@ -47,6 +47,12 @@
(color-theme-ld-dark)
(color-theme-ld-dark))
;; Projmake
(defun projmake-mode-hook ()
(projmake-mode)
(projmake-search-load-project))
(add-hook 'erlang-mode-hook 'projmake-mode-hook)
;; Window transparency
(set-frame-parameter (selected-frame) 'alpha '(85 50))
(add-to-list 'default-frame-alist '(alpha 85 50))