summaryrefslogtreecommitdiffstats
path: root/emacs/.emacs.d/site-lisp/oni-viewing.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2015-12-17 01:38:11 +0100
committerGravatar Tom Willemse2015-12-17 01:38:11 +0100
commit59743ffe50679b4f6f888c1ea23d527caae2c4bd (patch)
treedcee7a3d84021a6bc786cdbb6209926f14a21178 /emacs/.emacs.d/site-lisp/oni-viewing.el
parent4d00b7c7c3b85105c89b45ae3dfbf274ee9b89da (diff)
downloaddotfiles-59743ffe50679b4f6f888c1ea23d527caae2c4bd.tar.gz
dotfiles-59743ffe50679b4f6f888c1ea23d527caae2c4bd.zip
Add viewing library
Diffstat (limited to 'emacs/.emacs.d/site-lisp/oni-viewing.el')
-rw-r--r--emacs/.emacs.d/site-lisp/oni-viewing.el34
1 files changed, 34 insertions, 0 deletions
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 <tom@ryuslash.org>
+;; 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 <http://www.gnu.org/licenses/>.
+
+;;; 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