summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--emacs/.emacs.d/init.el4
-rw-r--r--emacs/.emacs.d/site-lisp/oni-viewing.el34
2 files changed, 34 insertions, 4 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index e84b396..bbbaf9d 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -141,10 +141,6 @@ MODE1 is enabled and vice-versa."
"Set the `disabled' property for each item in FUNCTIONS to nil."
(mapc #'(lambda (f) (put f 'disabled nil)) functions))
-(defun oni:make-readable ()
- "Make non-programming buffers a little more readable."
- (setq line-spacing .2))
-
(defun oni:markdown-mode-func ()
"Function for `markdown-mode-hook'."
(setq-local whitespace-style '(face trailing)))
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