Skip to content

Instantly share code, notes, and snippets.

@notyy
Created April 23, 2012 04:12
Show Gist options
  • Select an option

  • Save notyy/2468827 to your computer and use it in GitHub Desktop.

Select an option

Save notyy/2468827 to your computer and use it in GitHub Desktop.
.emacs
(load "~/.emacs.d/haskell-mode/haskell-site-file")
(add-to-list 'load-path "~/.emacs.d/color-theme-6.6.0")
;; (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
;; (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
(require 'color-theme)
(color-theme-initialize)
(color-theme-hober)
(put 'downcase-region 'disabled nil)
(add-to-list 'load-path "~/.emacs.d/scala-mode")
(require 'scala-mode-auto)
(add-to-list 'load-path "~/.emacs.d/plugins/yasnippet")
(require 'yasnippet)
(yas/global-mode 1)
(add-hook 'scala-mode-hook
'(lambda ()
(scala-mode-feature-electric-mode)))
(add-to-list 'load-path "~/.emacs.d/ensime/elisp/")
(require 'ensime)
(add-hook 'scala-mode-hook 'ensime-scala-mode-hook)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment