about summary refs log tree commit diff
path: root/configs/shared/.emacs.d/wpc/packages/wpc-prolog.el
blob: 94e705b1b114f7b6529f4d3dc32fa44822872f15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; wpc-prolog.el --- For Prologging things -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>

;;; Commentary:
;; Code configuring my Prolog work.

;;; Code:

(require 'macros)

;; TODO: Notice that the .pl extension conflicts with Perl files. This may
;; become a problem should I start working with Perl.
(macros/support-file-extension "pl" prolog-mode)

(provide 'wpc-prolog)
;;; wpc-prolog.el ends here