ambevar-dotfiles/.emacs.d/lisp/mode-perl.el

13 lines
393 B
EmacsLisp
Raw Normal View History

2014-01-07 18:36:07 +01:00
;;==============================================================================
;; Perl
;;==============================================================================
2014-10-24 14:58:38 +02:00
(defvaralias 'perl-indent-level 'tab-width)
2014-03-25 09:23:12 +01:00
(add-hook-and-eval
'perl-mode-hook
(lambda ()
(set (make-local-variable 'compile-command) (concat "perl " (shell-quote-argument buffer-file-name)))))
2014-02-12 17:37:43 +01:00
(provide 'mode-perl)