doomemacs/core/core-quickrun.el
Henrik Lissner 8eb103f152 Clean up
2015-11-20 04:00:38 -05:00

20 lines
499 B
EmacsLisp

;;; core-quickrun.el
(use-package quickrun
:commands (quickrun
quickrun-region
quickrun-with-arg
quickrun-shell
quickrun-compile-only
quickrun-replace-region
helm-quickrun)
:config
(setq quickrun-focus-p t)
(add-hook! quickrun/mode 'linum-mode)
(add-hook! quickrun/mode 'yascroll-bar-mode)
(add-to-list 'quickrun-file-alist '("\\.gvy$" . "groovy")))
(provide 'core-quickrun)
;;; core-quickrun.el ends here