Configure for use as external editor by evolution

This commit is contained in:
Wojciech Kozlowski 2020-07-22 00:26:37 +02:00
parent 55659ddbdc
commit 6b72946534
2 changed files with 10 additions and 5 deletions

View File

@ -59,11 +59,6 @@
(set-face-attribute 'italic nil ;; Emacs does not set italic face (set-face-attribute 'italic nil ;; Emacs does not set italic face
:family (concat font-name "-Italic"))) :family (concat font-name "-Italic")))
;; Fullscreen ---------------------------------------------------------------
(toggle-frame-maximized)
(add-to-list 'default-frame-alist '(fullscreen . maximized))
;; Visual clutter ----------------------------------------------------------- ;; Visual clutter -----------------------------------------------------------
(scroll-bar-mode -1) (scroll-bar-mode -1)

View File

@ -509,6 +509,16 @@
(use-package iedit (use-package iedit
:bind (("C-;" . iedit-mode))) :bind (("C-;" . iedit-mode)))
;; --------------------------------------------------------------------------
;; `mail-mode'.
;; --------------------------------------------------------------------------
(use-package mail-mode
:mode "\\evo.*\\'"
:hook
((mail-mode . auto-fill-mode)
(mail-mode . (lambda () (setq fill-column 71)))))
;; -------------------------------------------------------------------------- ;; --------------------------------------------------------------------------
;; `pdf-tools' - use instead of DocView. ;; `pdf-tools' - use instead of DocView.
;; -------------------------------------------------------------------------- ;; --------------------------------------------------------------------------