add gui, mail and programming language settings

This commit is contained in:
2020-12-05 20:44:33 +01:00
parent c06aba2ba4
commit 7d8b0caeee
13 changed files with 1840 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
;;; 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 (lambda() (concat user-emacs-directory "lisp/sql-indent"))
:commands sqlind-minor-mode)
(use-package systemd
:load-path (lambda() (concat user-emacs-directory "lisp/systemd"))
:commands systemd-mode
:mode (("\\.service\\'" . systemd-mode) ("\\.mount\\'" . systemd-mode)))
(provide 'filetype-settings)
;;; filetype-settings.el ends here