blob: fc79c1a25185fcd5914e5603f6518be135123acd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;;; -*- lexical-binding: t -*-
;; Time-stamp: <2019-09-11 11:29:16 (tslil@basingstoke)>
(use-package gnuplot-mode
:ensure t
:mode "\\.gnp$")
(use-package scad-mode
:ensure t
:mode "\\.scad$")
(setq auto-mode-alist
(append
'(("\\.emacs$" . emacs-lisp-mode)
("\\.scm$" . scheme-mode)
("\\.sch$" . scheme-mode)
("\\.sc$" . scheme-mode)
("\\.cl$" . lisp-mode)
("\\.py$" . python-mode)
("\\.pg$" . perl-mode)
) auto-mode-alist))
|