Emacs: Set fill-column to 200 for atomic-chrome buffers.

This commit is contained in:
tastytea 2020-01-22 03:38:26 +01:00
parent cc06b0c698
commit 8b7f7a955a
1 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
;;; server.el --- Set up network stuff.. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-22T03:21:00+0100>
;; Time-stamp: <2020-01-22T03:38:18+0100>
;;; Commentary:
@ -69,6 +69,9 @@
("^gitlab\\.com$" . markdown-mode)
))
(atomic-chrome-buffer-open-style 'frame)
:hook
(atomic-chrome-edit-mode . (lambda () (setq-local fill-column 200)))
)
))