Add viewing library
This commit is contained in:
parent
4d00b7c7c3
commit
59743ffe50
2 changed files with 34 additions and 4 deletions
|
@ -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)))
|
||||
|
|
34
emacs/.emacs.d/site-lisp/oni-viewing.el
Normal file
34
emacs/.emacs.d/site-lisp/oni-viewing.el
Normal file
|
@ -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
|
Loading…
Reference in a new issue