aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaël Ball <michael.ball@gmail.com>2019-07-21 11:37:23 +0100
committerMichaël Ball <michael.ball@gmail.com>2019-07-21 11:37:23 +0100
commitb7d670979fd5ea30928e72bbcfc0eeb9e5be39b3 (patch)
tree03758031747bdc3c30f6196b8785ec86711d05e7
parent3cd8401969544dff6d3093e1b11fa3863e2a1ef8 (diff)
Add writeroom-mode
-rwxr-xr-x.emacs7
1 files changed, 6 insertions, 1 deletions
diff --git a/.emacs b/.emacs
index b4a6474..736bff8 100755
--- a/.emacs
+++ b/.emacs
@@ -54,7 +54,7 @@
'(org-agenda-files (quote ("~/orgmode.org")))
'(package-selected-packages
(quote
- (dap-mode ivy-xref counsel ivy ini-mode ansible emacs-ansible yaml-mode lsp-python-ms csound-mode git-gutter emamux use-package elixir-mode web-mode multiple-cursors company-lsp lsp-ui lsp-mode company json-mode flycheck cygwin-mount python-mode typescript-mode org highlight-indent-guides magit airline-themes base16-theme go-mode neotree powerline rust-mode)))
+ (writeroom-mode dap-mode ivy-xref counsel ivy ini-mode ansible emacs-ansible yaml-mode lsp-python-ms csound-mode git-gutter emamux use-package elixir-mode web-mode multiple-cursors company-lsp lsp-ui lsp-mode company json-mode flycheck cygwin-mount python-mode typescript-mode org highlight-indent-guides magit airline-themes base16-theme go-mode neotree powerline rust-mode)))
'(safe-local-variable-values (quote ((engine . jinja2) (engine . jinja)))))
(custom-set-faces
;; custom-set-faces was added by Custom.
@@ -341,6 +341,11 @@
:config
(add-to-list 'auto-mode-alist '("\\.rs\\'" . rust-mode)))
+;;; writeroom-mode
+(use-package writeroom-mode
+ :ensure t
+ :demand t)
+
(provide '.emacs)
;;; .emacs ends here