Olivetti settings

This commit is contained in:
Lars Tveito 2020-09-22 18:14:51 +02:00
parent 98aee32e44
commit a9ac150595

View File

@ -460,6 +460,15 @@
("psi" . ?ψ))) ("psi" . ?ψ)))
#+END_SRC #+END_SRC
[[https://github.com/rnkn/olivetti][Olivetti]] is a package that simply centers the text of a buffer. It is very
simple and beautiful. The default width is just a bit short.
#+BEGIN_SRC emacs-lisp
(with-eval-after-load 'olivetti
(setq-default olivetti-body-width 82)
(remove-hook 'olivetti-mode-on-hook 'visual-line-mode))
#+END_SRC
** PDF Tools ** PDF Tools
[[https://github.com/politza/pdf-tools][PDF Tools]] makes a huge improvement on the built-in [[http://www.gnu.org/software/emacs/manual/html_node/emacs/Document-View.html][doc-view-mode]]; the only [[https://github.com/politza/pdf-tools][PDF Tools]] makes a huge improvement on the built-in [[http://www.gnu.org/software/emacs/manual/html_node/emacs/Document-View.html][doc-view-mode]]; the only
@ -1264,6 +1273,12 @@
(define-key cider-repl-mode-map (kbd "C-l") 'cider-repl-clear-buffer)) (define-key cider-repl-mode-map (kbd "C-l") 'cider-repl-clear-buffer))
#+END_SRC #+END_SRC
** Bindings for [[https://github.com/rnkn/olivetti][Olivetti]]
#+BEGIN_SRC emacs-lisp
(define-key custom-bindings-map (kbd "C-c o") 'olivetti-mode)
#+END_SRC
** Bindings for built-ins ** Bindings for built-ins
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp