;;; 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 :commands sqlind-minor-mode) (use-package systemd :commands systemd-mode :mode (("\\.service\\'" . systemd-mode) ("\\.mount\\'" . systemd-mode))) (provide 'filetype-settings) ;;; filetype-settings.el ends here