Skip to content

Instantly share code, notes, and snippets.

@jonsterling
Created September 21, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonsterling/475c91adef4ebe0457260a94a11aae51 to your computer and use it in GitHub Desktop.
Save jonsterling/475c91adef4ebe0457260a94a11aae51 to your computer and use it in GitHub Desktop.
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(require 'use-package)
(defun jms-redprl-startup-hook ()
"Get flycheck running when RedPRL starts."
(flycheck-mode)
(flycheck-list-errors))
(use-package redprl
:ensure t
:config (add-hook 'redprl-mode-hook 'jms-redprl-startup-hook))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment