Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/srdja/iodine-theme
Iodine emacs color theme.
https://github.com/srdja/iodine-theme
emacs iodine-theme theme
Last synced: 3 months ago
JSON representation
Iodine emacs color theme.
- Host: GitHub
- URL: https://github.com/srdja/iodine-theme
- Owner: srdja
- License: gpl-3.0
- Created: 2015-09-01T01:38:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-31T16:39:24.000Z (over 9 years ago)
- Last Synced: 2024-03-21T21:00:50.179Z (11 months ago)
- Topics: emacs, iodine-theme, theme
- Language: Emacs Lisp
- Size: 425 KB
- Stars: 5
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
#### Iodine emacs color theme
![Screenshot](https://github.com/srdja/iodine-theme/blob/master/theme.png)#### Installing the theme
##### Through [Melpa](https://melpa.org) (recomended)
Make sure you have the following lines in you `.emacs` file if you don't already have them:
```elisp
(require 'package) ;; You might already have this line
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
(when (< emacs-major-version 24)
;; For important compatibility libraries like cl-lib
(add-to-list 'package-archives '("gnu" . "http://elpa.gnu.org/packages/")))
(package-initialize) ;; You might already have this line
```
You can now run `M-x package-install` `iodine-theme`##### By cloning the repo
Clone the repo and then add this line to your `.emacs` file:
```elisp
(add-to-list 'custom-theme-load-path "/path/to/theme-file.el")
```
This will make sure that emacs can find the theme file.#### Using the theme
The theme can be loaded with `M-x load-theme` `iodine`Or if you wish to load the theme on startup you can add this to your `.emacs`:
```elisp
(load-theme 'iodine t)
```