Created
January 29, 2019 19:54
-
-
Save typetetris/cca937764617b33b81e9d4ade0af8e33 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(require 'package) | |
(package-initialize 'noactivate) | |
(eval-when-compile | |
(require 'use-package)) | |
(use-package evil) | |
(evil-mode 1) | |
(use-package lsp-mode) | |
(use-package lsp-ui) | |
(use-package lsp-haskell) | |
(add-hook 'haskell-mode-hook #'lsp) | |
(add-hook 'lsp-mode-hook 'lsp-ui-mode) | |
(require 'helm-config) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment