2020-06-05 21:01:23 +02:00
|
|
|
;;; lang/raku/config.el -*- lexical-binding: t; -*-
|
2017-07-06 14:59:34 +02:00
|
|
|
|
2020-04-30 04:17:10 -04:00
|
|
|
(use-package! raku-mode
|
2020-05-02 22:11:58 -04:00
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(defalias 'perl6-mode #'raku-mode)
|
2020-04-30 04:17:10 -04:00
|
|
|
:config
|
|
|
|
(set-repl-handler! 'raku-mode #'run-raku))
|
2017-07-06 14:59:34 +02:00
|
|
|
|
|
|
|
|
2020-04-30 04:17:10 -04:00
|
|
|
(use-package! flycheck-raku
|
2022-08-12 20:29:19 +02:00
|
|
|
:when (modulep! :checkers syntax)
|
2020-04-30 04:17:10 -04:00
|
|
|
:after raku-mode)
|