mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 12:00:24 +10:00
Moving to Doom Emacs!
This commit is contained in:
13
.emacs.d/modules/lang/perl/README.org
Normal file
13
.emacs.d/modules/lang/perl/README.org
Normal file
@@ -0,0 +1,13 @@
|
||||
#+TITLE: :lang perl
|
||||
|
||||
This module adds support for Perl 6, and flycheck support for all versions of Perl.
|
||||
|
||||
* Table of Contents :TOC:
|
||||
- [[#install][Install]]
|
||||
|
||||
* Install
|
||||
This module depends on perl itself. Perl <5 typically comes bundled with most OSes and Linux distros.
|
||||
|
||||
You'll have to install
|
||||
|
||||
There are no other dependencies.
|
||||
10
.emacs.d/modules/lang/perl/config.el
Normal file
10
.emacs.d/modules/lang/perl/config.el
Normal file
@@ -0,0 +1,10 @@
|
||||
;;; lang/perl/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
;; There's also `perl-mode' for perl < 6, which is already set up.
|
||||
|
||||
(use-package! perl6-detect)
|
||||
|
||||
|
||||
(use-package! flycheck-perl6
|
||||
:when (featurep! :tools flycheck)
|
||||
:after perl6-mode)
|
||||
7
.emacs.d/modules/lang/perl/packages.el
Normal file
7
.emacs.d/modules/lang/perl/packages.el
Normal file
@@ -0,0 +1,7 @@
|
||||
;; -*- no-byte-compile: t; -*-
|
||||
;;; lang/perl/packages.el
|
||||
|
||||
(package! perl6-mode)
|
||||
|
||||
(when (featurep! :tools flycheck)
|
||||
(package! flycheck-perl6))
|
||||
Reference in New Issue
Block a user