Everforest/everforest.el

33 lines
1.0 KiB
EmacsLisp
Raw Permalink Normal View History

2022-06-29 05:26:50 +00:00
;;; everforest.el --- Everforest Theme pack -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2022 Evan Sarris
;;
;;; Author: Theory_of_Everything <evan@theoryware.net>
;;; Version: 0.1
;;; Homepage: https://git.sr.ht/~theorytoe/everforest-theme
;;; Package-Requires: ((emacs "24"))
;;
;; This file is not part of GNU Emacs.
;;
;;; Commentary:
;; An Emacs port of the Everforest Vim theme, a low-contrast green-coloured
;; theme. This is a current work in progress, so expect issues and unorthodox
;; coloring occasionally. The port is quite opinionated from the original
;; everforest theme, but I try to keep as true to the original theme as
;; possible, but making changes where needed for both functional and cosmetic
;; reasons.
;;; Code:
;;; TODO: Define more general macro here for better
;;; definition/modification of themes
;;;###autoload
2023-04-11 09:40:56 +00:00
(and load-file-name
(add-to-list 'custom-theme-load-path
(file-name-as-directory
(file-name-directory load-file-name))))
2022-06-29 05:26:50 +00:00
2023-04-11 09:51:19 +00:00
(provide 'everforest)
2022-06-29 05:26:50 +00:00
;;; everforest.el ends here