]>
Commit | Line | Data |
---|---|---|
53e6db90 DC |
1 | ;;; solarized-theme.el --- The Solarized color theme -*- lexical-binding: t -*- |
2 | ||
3 | ;; Copyright (C) 2011-2021 Bozhidar Batsov | |
4 | ||
5 | ;; Author: Bozhidar Batsov <bozhidar@batsov.dev> | |
6 | ;; Author: Thomas Frössman <thomasf@jossystem.se> | |
7 | ;; URL: http://github.com/bbatsov/solarized-emacs | |
8 | ;; Version: 2.0.1 | |
9 | ;; Package-Requires: ((emacs "24.1")) | |
10 | ;; Keywords: convenience, themes, solarized | |
11 | ||
12 | ;; This program is free software; you can redistribute it and/or modify | |
13 | ;; it under the terms of the GNU General Public License as published by | |
14 | ;; the Free Software Foundation, either version 3 of the License, or | |
15 | ;; (at your option) any later version. | |
16 | ||
17 | ;; This program is distributed in the hope that it will be useful, | |
18 | ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 | ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 | ;; GNU General Public License for more details. | |
21 | ||
22 | ;; You should have received a copy of the GNU General Public License | |
23 | ;; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
24 | ||
25 | ;;; Commentary: | |
26 | ;; | |
27 | ;; A port of Solarized to Emacs. | |
28 | ;; | |
29 | ;;; Installation: | |
30 | ;; | |
31 | ;; Drop the `solarized-theme.el` somewhere in your `load-path` and | |
32 | ;; the two themes in a folder that is on `custom-theme-load-path' | |
33 | ;; and enjoy! | |
34 | ;; | |
35 | ;; Don't forget that the theme requires Emacs 24. | |
36 | ;; | |
37 | ;;; Credits | |
38 | ;; | |
39 | ;; Ethan Schoonover created the original theme for vim on such this port | |
40 | ;; is based. | |
41 | ;; | |
42 | ;;; Code: | |
43 | ||
44 | (require 'solarized) | |
45 | ||
46 | (provide 'solarized-theme) | |
47 | ||
48 | ;; Local Variables: | |
49 | ;; indent-tabs-mode: nil | |
50 | ;; End: | |
51 | ||
52 | ;;; solarized-theme.el ends here |