Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packaging fixes #21

Merged
merged 1 commit into from
Mar 26, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 25 additions & 14 deletions nord-theme.el
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
;;; nord-theme.el --- An arctic, north-bluish clean and elegant Emacs theme.

;; title: Nord Emacs
;; project: nord-emacs
;; version: 0.1.1
;; repository: https://github.com/arcticicestudio/nord-emacs
;; author: Arctic Ice Studio
;; email: development@arcticicestudio.com
;; copyright: Copyright (C) 2017
;;
;; [References]
;;; nord-theme.el --- An arctic, north-bluish clean and elegant theme

;; Copyright (C) 2017 by Arctic Ice Studio

;; Title: Nord Theme
;; Project: nord-emacs
;; Version: 0.1.1
;; URL: https://github.com/arcticicestudio/nord-emacs
;; Author: Arctic Ice Studio <development@arcticicestudio.com>
;; Package-Requires: ((emacs "24"))

;;; Commentary:

;; Nord is a 16 colorspace theme build to run in GUI- and terminal
;; mode with support for many third-party syntax- and UI packages.

;;; References:
;; Awesome Emacs
;; https://github.com/emacs-tw/awesome-emacs
;; GNU ELPA
Expand All @@ -22,15 +28,18 @@
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Face-Attributes.html
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Faces-for-Font-Lock.html
;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Display-Feature-Testing.html
;; marmelade repo
;; marmalade repo
;; https://marmalade-repo.org
;; MELPA
;; https://melpa.org
;; https://stable.melpa.org

;;; Code:

(unless (>= emacs-major-version 24)
(error "Nord Emacs theme requires Emacs 24 or later!"))
(error "Nord theme requires Emacs 24 or later!"))

(deftheme nord "An arctic, north-bluish clean and elegant Emacs theme")
(deftheme nord "An arctic, north-bluish clean and elegant theme")

;;;; Color Constants
(let ((class '((class color) (min-colors 89)))
Expand Down Expand Up @@ -573,3 +582,5 @@
;; no-byte-compile: t
;; indent-tabs-mode: nil
;; End:

;;; nord-theme.el ends here