Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gchp/flatland-emacs
Emacs port of the Flatland theme for Sublime Text
https://github.com/gchp/flatland-emacs
Last synced: 21 days ago
JSON representation
Emacs port of the Flatland theme for Sublime Text
- Host: GitHub
- URL: https://github.com/gchp/flatland-emacs
- Owner: gchp
- Created: 2013-11-02T13:11:41.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2022-12-15T18:54:33.000Z (about 2 years ago)
- Last Synced: 2024-10-16T12:44:43.236Z (2 months ago)
- Language: Emacs Lisp
- Size: 156 KB
- Stars: 71
- Watchers: 7
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
Flatland for Emacs is a direct port of the popular
[Flatland](http://github.com/thinkpixellab/flatland) theme for Sublime Text.
developed by Pixel Lab.This theme uses the new built-in theming support available starting
with Emacs 24.![Flatland Emacs Screenshot](https://raw.github.com/gregchapple/flatland-emacs/master/flatland-emacs.png)
### NOTE
This is still under development. Currently, this has only been tested in the GUI version of emacs, and not in the terminal.
If you find any issues, please report them on the Github Issue Tracker. Pull requests welcome :)## Installation
### Manual
Download `flatland-theme.el` to the directory `~/.emacs.d/themes/`. Add this to your
`.emacs`:```lisp
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/")
```Now you can load the theme with the interactive function `load-theme` like this:
`M-x load-theme RET flatland`
Or, load load it automatically by placing this in your initialisation file:
```lisp
(load-theme 'flatland t)
```### MELPA
You can also install flatland from MELPA.```
M-x package-install RET flatland-theme
```Then load the same way as above.
## Usage
For best use with HTML, you should check out `web-mode` which can be installed from MELPA. This theme has been optimised for use with web-mode rather than html-mode.