Files
emacs/settings/filetype-settings.el
2021-01-27 21:50:40 +01:00

28 lines
709 B
EmacsLisp

;;; filetype-settings.el --- Summary -*- lexical-binding: t -*-
;;; Commentary:
;;; Requirements:
;; markdown-mode https://melpa.org/#/markdown-mode
;; sql-indent https://elpa.gnu.org/packages/sql-indent.html https://github.com/alex-hhh/emacs-sql-indent
;; sqlup-mode also?
;; systemd https://melpa.org/#/systemd
;;; Code:
(use-package markdown-mode
:commands markdown-mode
:mode "\\.md\\'")
(use-package sql-indent
:load-path "lisp/sql-indent"
:commands sqlind-minor-mode)
(use-package systemd
:load-path "lisp/systemd"
:commands systemd-mode
:mode (("\\.service\\'" . systemd-mode) ("\\.mount\\'" . systemd-mode)))
(provide 'filetype-settings)
;;; filetype-settings.el ends here