spacemacs/layers/+lang/perl5/packages.el
2017-06-08 09:12:35 +02:00

107 lines
4.3 KiB
EmacsLisp

;;; packages.el --- Perl5 Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
;;
;; Author: Troy Hinckley <troyhinckley@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq perl5-packages
'(
(cperl-mode :location built-in)
smartparens
flycheck
))
(defun perl5/init-cperl-mode ()
(use-package cperl-mode
:defer t
:mode "\\.\\(p[lm]x?\\|P[LM]X?\\)\\'"
:interpreter "perl"
:interpreter "perl5"
:init
(progn
(setq
;; highlight all scalar variables not just the instantiation
cperl-highlight-variables-indiscriminately t
cperl-indent-level 4 ; 4 spaces is the standard indentation
cperl-close-paren-offset -4 ; indent the closing paren back four spaces
cperl-continued-statement-offset 4 ; if a statement continues indent it to four spaces
cperl-indent-parens-as-block t)) ; parentheses are indented with the block and not with scope
:config
(progn
;; Don't highlight arrays and hashes in comments
(font-lock-remove-keywords
'cperl-mode
'(("\\(\\([@%]\\|\\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1
(if (eq (char-after (match-beginning 2)) 37)
'cperl-hash-face 'cperl-array-face) t)
("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)" 1
(if (= (- (match-end 2) (match-beginning 2)) 1)
(if (eq (char-after (match-beginning 3)) 123)
'cperl-hash-face 'cperl-array-face)
font-lock-variable-name-face) t)
("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
(2 font-lock-string-face t)
("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" nil nil
(1 font-lock-string-face t)))
("[[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1 font-lock-string-face t)))
(font-lock-add-keywords
'cperl-mode
'(("\\(\\([@%]\\|\\$#\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)" 1
(if (nth 4 (syntax-ppss))
'font-lock-comment-face
(if (eq (char-after (match-beginning 2)) ?%)
'cperl-hash-face
'cperl-array-face)) t)
("\\(\\([$@]+\\)[a-zA-Z_:][a-zA-Z0-9_:]*\\)[ \t]*\\([[{]\\)" 1
(if (nth 4 (syntax-ppss))
'font-lock-comment-face
(if (= (- (match-end 2) (match-beginning 2)) 1)
(if (eq (char-after (match-beginning 3)) ?{)
'cperl-hash-face
'cperl-array-face)
font-lock-variable-name-face)) t)
("\\([]}\\\\%@>*&]\\|\\$[a-zA-Z0-9_:]*\\)[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}"
(2 (if (nth 4 (syntax-ppss))
'font-lock-comment-face
'font-lock-string-face) t)
("\\=[ \t]*{[ \t]*\\(-?[a-zA-Z0-9_:]+\\)[ \t]*}" nil nil
(1 (if (nth 4 (syntax-ppss))
'font-lock-comment-face
'font-lock-string-face) t)))
("[[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1
(if (nth 4 (syntax-ppss))
'font-lock-comment-face
'font-lock-string-face) t)))
;; Use less horrible colors for cperl arrays and hashes
(set-face-attribute 'cperl-array-face nil
:foreground "#DD7D0A"
:background 'unspecified
:weight 'unspecified)
(set-face-attribute 'cperl-hash-face nil
:foreground "OrangeRed3"
:background 'unspecified
:weight 'unspecified)
(font-lock-add-keywords 'cperl-mode
'(("\\_<const\\|croak\\_>" . font-lock-keyword-face)))
(font-lock-add-keywords 'cperl-mode
'(("\\_<say\\|any\\_>" . cperl-nonoverridable-face))))))
(defun perl5/post-init-smartparens ()
;; fixs a bug with electric mode and smartparens https://github.com/syl20bnr/spacemacs/issues/480
(with-eval-after-load 'cperl-mode
(add-hook 'smartparens-enabled-hook 'spacemacs//perl5-smartparens-enable)
(add-hook 'smartparens-disabled-hook 'spacemacs//perl5-spartparens-disable)))
(defun perl5/post-init-flycheck ()
(spacemacs/enable-flycheck 'cperl-mode))