2015-06-15 09:05:52 +02:00
|
|
|
;;; core-quickrun.el
|
|
|
|
|
|
|
|
(use-package quickrun
|
|
|
|
:commands (quickrun
|
|
|
|
quickrun-region
|
|
|
|
quickrun-with-arg
|
|
|
|
quickrun-shell
|
|
|
|
quickrun-compile-only
|
|
|
|
quickrun-replace-region
|
2015-06-24 15:39:13 +02:00
|
|
|
helm-quickrun)
|
|
|
|
:config
|
2015-11-19 05:55:21 -05:00
|
|
|
(setq quickrun-focus-p t)
|
|
|
|
(add-hook! quickrun/mode 'linum-mode)
|
2015-11-20 04:00:38 -05:00
|
|
|
(add-hook! quickrun/mode 'yascroll-bar-mode)
|
|
|
|
|
2015-11-19 05:55:21 -05:00
|
|
|
(add-to-list 'quickrun-file-alist '("\\.gvy$" . "groovy")))
|
2015-06-15 09:05:52 +02:00
|
|
|
|
|
|
|
(provide 'core-quickrun)
|
|
|
|
;;; core-quickrun.el ends here
|