.emacs.d/init.d/text/misc.el

153 lines
4.8 KiB
EmacsLisp
Raw Normal View History

2019-10-14 17:38:14 +02:00
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-12-26T20:30:46+0100>
2019-10-14 17:38:14 +02:00
;;; Commentary:
;;; Code:
(require 'text/common)
(use-package conf-mode
:mode
("^/etc/conf\\.d/" . conf-mode) ; openrc config files.
("^/etc/portage/package\\.use/" . conf-space-mode) ; Portage config.
("^/etc/portage/package\\.accept_keywords/" . conf-space-mode)
2019-10-14 17:38:14 +02:00
("\\.pc\\(\\.in\\)?$" . conf-mode) ; pkg-config files.
("conanfile\\.txt$" . conf-mode) ; Conan recipes.
)
(use-package crontab-mode
:custom-face
(outline-1 ((t (:inherit outline-1 ; Shrink minutes to normal size.
:height 1.0))))
:mode
("/cron\\.d/" . crontab-mode)
("^'/etc/crontab$" . crontab-mode)
2019-10-14 17:38:14 +02:00
:hook
(crontab-mode . (lambda () (auto-fill-mode -1))) ; No word-wrapping.
)
(use-package nginx-mode
:defer t
)
(use-package company-nginx
:after nginx-mode
:hook
(nginx-mode . company-nginx-keywords)
)
(use-package yaml-mode
:mode
("\\.yml$" . yaml-mode)
2019-10-14 17:38:14 +02:00
)
(use-package mediawiki)
(use-package csv-mode
:mode
("\\.[Cc][Ss][Vv]$" . csv-mode)
2019-10-14 17:38:14 +02:00
)
(use-package adoc-mode
:custom-face
;; Style headers.
(markup-title-0-face ((t (:inherit markup-gen-face :height 1.4
:weight bold))))
(markup-title-1-face ((t (:inherit markup-gen-face :height 1.3
:weight bold))))
(markup-title-2-face ((t (:inherit markup-gen-face :height 1.2
:weight bold))))
(markup-title-3-face ((t (:inherit markup-gen-face :height 1.1
:weight bold))))
(markup-title-4-face ((t (:inherit markup-gen-face :height 1.0
:weight bold
:underline t))))
(markup-title-5-face ((t (:inherit markup-gen-face :height 1.0
:weight bold))))
;; Enlarge meta-data to the same size as the other text.
(markup-meta-face ((t (:inherit font-lock-comment-face))))
(markup-secondary-text-face ((t (:inherit markup-gen-face :height 1.0
:foreground "firebrick"))))
(markup-hide-delimiter-face ((t (:inherit markup-meta-face))))
(markup-meta-hide-face ((t (:inherit markup-meta-face))))
;; Style code snippets (``)
(markup-verbatim-face ((t (:background "gray5"))))
:mode
("\\.adoc$" . adoc-mode)
2019-10-14 17:38:14 +02:00
:hook
(adoc-mode . auto-fill-mode) ; Wrap at fill-column.
(adoc-mode . (lambda () ; Automatically update date.
(setq-local time-stamp-pattern
"8/:[dD[aA][tT][eE]: +%Y-%02m-%02d\n")
2019-10-14 17:38:14 +02:00
;; (setq-local time-stamp-time-zone nil) ; Set to local TZ.
))
2019-11-24 21:22:32 +01:00
(adoc-mode . yas-minor-mode) ; Enable yasnippets.
2019-10-14 17:38:14 +02:00
)
(use-package markdown-mode
:custom
(markdown-command "cmark")
:custom-face
;; Style headers.
(markdown-header-face-1 ((t (:inherit markdown-header-face :height 1.4
:weight bold))))
(markdown-header-face-2 ((t (:inherit markdown-header-face :height 1.3
:weight bold))))
(markdown-header-face-3 ((t (:inherit markdown-header-face :height 1.2
:weight bold))))
(markdown-header-face-4 ((t (:inherit markdown-header-face :height 1.1
:weight bold))))
(markdown-header-face-5 ((t (:inherit markdown-header-face :height 1.0
:weight bold :underline t))))
(markdown-header-face-6 ((t (:inherit markdown-header-face :height 1.0
:weight bold))))
(markdown-header-face-7 ((t (:inherit markdown-header-face :height 1.0
:weight bold))))
:mode
(("README\\.md$" . gfm-mode)
("\\.md$" . markdown-mode)
("\\.markdown$" . markdown-mode))
2019-10-14 17:38:14 +02:00
:hook
(markdown-mode . auto-fill-mode) ; Wrap at fill-column.
)
2019-11-20 18:28:25 +01:00
;; Insert dummy pseudo Latin text.
(use-package lorem-ipsum)
;; Document editing, formatting, and organizing mode.
(use-package org
:custom
(org-support-shift-select t) ; Make shift behave normally on text.
:bind
(:map org-mode-map ; Remove some annoying keybindings.
("M-<left>" . nil)
("M-<right>" . nil)
("M-<up>" . nil)
("M-<down>" . nil)
("M-S-<left>" . nil)
("M-S-<right>" . nil)
("M-S-<up>" . nil)
("M-S-<down>" . nil)
;; ("S-<left>" . nil)
;; ("S-<right>" . nil)
;; ("C-S-<left>" . nil)
;; ("C-S-<right>" . nil)
;; ("S-<up>" . nil)
;; ("S-<down>" . nil)
)
)
2019-10-14 17:38:14 +02:00
(provide 'text/misc)
;;; misc.el ends here