Rename perl module to raku.
It doesn't actually contain any Perl config.
This commit is contained in:
parent
d93b789ef5
commit
35ec72d080
8 changed files with 18 additions and 21 deletions
11
modules/lang/raku/README.org
Normal file
11
modules/lang/raku/README.org
Normal file
|
@ -0,0 +1,11 @@
|
|||
#+TITLE: :lang raku
|
||||
|
||||
This module adds a major mode and flycheck for Raku.
|
||||
|
||||
* Table of Contents :TOC:
|
||||
- [[#install][Install]]
|
||||
|
||||
* Install
|
||||
This module depends on raku itself.
|
||||
|
||||
There are no other dependencies.
|
15
modules/lang/raku/config.el
Normal file
15
modules/lang/raku/config.el
Normal file
|
@ -0,0 +1,15 @@
|
|||
;;; lang/raku/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
|
||||
|
||||
(use-package! raku-mode
|
||||
:defer t
|
||||
:init
|
||||
(defalias 'perl6-mode #'raku-mode)
|
||||
:config
|
||||
(set-repl-handler! 'raku-mode #'run-raku))
|
||||
|
||||
|
||||
(use-package! flycheck-raku
|
||||
:when (featurep! :checkers syntax)
|
||||
:after raku-mode)
|
9
modules/lang/raku/packages.el
Normal file
9
modules/lang/raku/packages.el
Normal file
|
@ -0,0 +1,9 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/raku/packages.el
|
||||
|
||||
(package! raku-mode :pin "d474216840251dc0efe4f4aa4f5c5f66ac26fa74")
|
||||
|
||||
(when (featurep! :checkers syntax)
|
||||
(package! flycheck-raku
|
||||
:recipe (:host github :repo "widefox/flycheck-raku")
|
||||
:pin "046f35abe0c61967157e151126e4dd7ec5d1c004"))
|
Loading…
Add table
Add a link
Reference in a new issue