From 59743ffe50679b4f6f888c1ea23d527caae2c4bd Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 17 Dec 2015 01:38:11 +0100 Subject: Add viewing library --- emacs/.emacs.d/site-lisp/oni-viewing.el | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 emacs/.emacs.d/site-lisp/oni-viewing.el (limited to 'emacs/.emacs.d/site-lisp/oni-viewing.el') diff --git a/emacs/.emacs.d/site-lisp/oni-viewing.el b/emacs/.emacs.d/site-lisp/oni-viewing.el new file mode 100644 index 0000000..5f426ec --- /dev/null +++ b/emacs/.emacs.d/site-lisp/oni-viewing.el @@ -0,0 +1,34 @@ +;;; oni-viewing.el --- Commands and functions for viewing -*- lexical-binding: t; -*- + +;; Copyright (C) 2015 Tom Willemse + +;; Author: Tom Willemse +;; Keywords: + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;; Here are some commands and functions that help to improve the +;; reading experience in Emacs. + +;;; Code: + +;;;###autoload +(defun oni:make-readable () + "Make non-programming buffers a little more readable." + (setq line-spacing .2)) + +(provide 'oni-viewing) +;;; oni-viewing.el ends here -- cgit v1.2.3-54-g00ecf