summaryrefslogtreecommitdiff
path: root/init/km-modes.el
diff options
context:
space:
mode:
Diffstat (limited to 'init/km-modes.el')
-rw-r--r--init/km-modes.el13
1 files changed, 0 insertions, 13 deletions
diff --git a/init/km-modes.el b/init/km-modes.el
deleted file mode 100644
index 87ff5e5..0000000
--- a/init/km-modes.el
+++ /dev/null
@@ -1,13 +0,0 @@
-;; These could be kept alongside related topics, but for whatever reason
-;; I prefer having them together.
-
-(defvar km/modes '(("\\.zsh$" . shell-script-mode)
- ("\\.*rc$" . conf-unix-mode)
- ("\\.org.txt$" . org-mode)
- ("PKGBUILD" . pkgbuild-mode))
- "Auto mode mappings")
-
-(mapc
- (lambda (mode) (setq auto-mode-alist
- (cons mode auto-mode-alist)))
- km/modes)