1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

pasp-mode

Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
This commit is contained in:
Stefan Ellmauthaler 2021-10-28 01:23:13 +02:00
parent 3591a4d440
commit 7c5e24e0ad

View File

@ -17,9 +17,9 @@
(setq tab-width 2)
;; prolog
(setq auto-mode-alist (append '(("\\.pl$" . prolog-mode)) auto-mode-alist))
(setq auto-mode-alist (append '(("\\.lp$" . prolog-mode)) auto-mode-alist))
(setq auto-mode-alist (append '(("\\.rls$" . prolog-mode)) auto-mode-alist))
;(setq auto-mode-alist (append '(("\\.pl$" . prolog-mode)) auto-mode-alist))
;(setq auto-mode-alist (append '(("\\.lp$" . prolog-mode)) auto-mode-alist))
;(setq auto-mode-alist (append '(("\\.rls$" . prolog-mode)) auto-mode-alist))
;; spellchecking
(setq ispell-dictionary "british")
@ -401,7 +401,11 @@
(flyspell-mode-line-string nil))
;; pasp
(use-package pasp-mode)
(use-package pasp-mode
:mode
("\\.asp\\'" . pasp-mode)
("\\.lp\\'" . pasp-mode)
("\\.rls\\'" . pasp-mode))
;; sparql
(use-package sparql-mode)