diff --git a/focus-mode.el b/focus.el similarity index 71% rename from focus-mode.el rename to focus.el index acdfa60..36e4163 100644 --- a/focus-mode.el +++ b/focus.el @@ -1,3 +1,32 @@ +;;; focus.el --- Dim the font color of text in surrounding paragraphs -*- lexical-binding: t; -*- + +;; Copyright (C) 2015 Lars Tveito + +;; Author: Lars Tveito +;; URL: http://github.com/larstvei/Focus +;; Created: 11th May 2015 +;; Version: 0.0.1 +;; Package-Requires: ((emacs "24") (cl-lib "1.0")) + +;; 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: + +;; + +;;; Code: + (require 'cl-lib) (defvar-local focus-pre-overlay nil @@ -60,3 +89,7 @@ focus-move-focus to `post-command-hook'." "Dim the font color text in surrounding paragraphs." :init-value nil (if focus-mode (focus-init) (focus-terminate))) + + +(provide 'focus) +;;; focus.el ends here