Skip to content

Instantly share code, notes, and snippets.

@konn
Created September 10, 2015 08:15
Show Gist options
  • Save konn/0b8555298bbec0794fd4 to your computer and use it in GitHub Desktop.
Save konn/0b8555298bbec0794fd4 to your computer and use it in GitHub Desktop.
minimal elisp setting for ghc-mod
(add-to-list 'exec-path (expand-file-name "~/.local/bin"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/haskell-mode-13.14.2"))
(add-to-list 'load-path (expand-file-name "~/.emacs.d/elpa/ghc-5.3.0.0"))
(load "haskell-mode-autoloads")
(autoload 'ghc-init "ghc" nil t)
(autoload 'ghc-debug "ghc" nil t)
(add-hook 'haskell-mode-hook (lambda () (ghc-init)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment