diff options
author | Michaël Ball <michael.ball@gmail.com> | 2019-07-21 11:37:23 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@gmail.com> | 2019-07-21 11:37:23 +0100 |
commit | b7d670979fd5ea30928e72bbcfc0eeb9e5be39b3 (patch) | |
tree | 03758031747bdc3c30f6196b8785ec86711d05e7 | |
parent | 3cd8401969544dff6d3093e1b11fa3863e2a1ef8 (diff) |
Add writeroom-mode
-rwxr-xr-x | .emacs | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |