solarized-emacs

a fork of Bozhidar Batsov's solarized-emacs
git clone https://git.trogloxene.org/solarized-emacs.git
Log | Files | Refs | README

commit 55507e1fc67442cda29a9eaeb68a06983c31e094
parent c514036714609e2c15a41d160af2ee81dcd76b76
Author: Thomas Frössman <thomasf@jossystem.se>
Date:   Tue, 13 May 2014 20:22:49 +0200

moved manual install instructions to end of readme

Other information is more important.

Diffstat:
MREADME.md | 52++++++++++++++++++++++++++++------------------------
1 file changed, 28 insertions(+), 24 deletions(-)

diff --git a/README.md b/README.md @@ -10,27 +10,6 @@ customizations and `deftheme` and does not require the # Installation -## Stand-alone installation - -Save the following files in a folder that's on your Emacs' `load-path`: - -* [dash.el](https://raw.githubusercontent.com/magnars/dash.el/master/dash.el) - [dash](https://github.com/magnars/dash.el), a modern list library for Emacs -* [solarized.el](https://raw.githubusercontent.com/bbatsov/solarized-emacs/master/solarized.el) - the solarzed theme - -Save the following files into `~/.emacs.d/themes`: - -* [solarized-light-theme.el](https://raw.githubusercontent.com/bbatsov/solarized-emacs/master/solarized-light-theme.el) -* [solarized-dark-theme.el](https://raw.githubusercontent.com/bbatsov/solarized-emacs/master/solarized-dark-theme.el) - -Add this your `.emacs.d`: - -```lisp -(add-to-list 'custom-theme-load-path "~/.emacs.d/themes") -``` - -Now you can load the theme with the interactive function `load-theme`. - -## MELPA & Marmalade Solarized for Emacs is available for installation via the [MELPA](http://melpa.milkbox.net) and @@ -40,8 +19,11 @@ MELPA) you can install solarized like this: `M-x package-install solarized-theme` -Afterwards - business as usual, just load one of the theme variants -with `M-x load-theme`. +Afterwards - business as usual, just load one of the theme variants with `M-x +load-theme`. + +(If you want to install manually that procedure is briefly documentet in the +FAQ at the end of this document.) # Customisations @@ -85,7 +67,6 @@ manner as the vertical border. (setq x-underline-at-descent-line t) ``` - # Bugs & Improvements Please, report any problems that you find on the projects integrated @@ -93,6 +74,29 @@ issue tracker. If you've added some improvements and you want them included upstream don't hesitate to send me a patch or even better - a GitHub pull request. +# FAQ + +## Stand-alone manual installation + +Save the following files in a folder that's on your Emacs' `load-path`: + +* [dash.el](https://raw.githubusercontent.com/magnars/dash.el/master/dash.el) - [dash](https://github.com/magnars/dash.el), a modern list library for Emacs +* [solarized.el](https://raw.githubusercontent.com/bbatsov/solarized-emacs/master/solarized.el) - the solarzed theme + +Save the following files into `~/.emacs.d/themes`: + +* [solarized-light-theme.el](https://raw.githubusercontent.com/bbatsov/solarized-emacs/master/solarized-light-theme.el) +* [solarized-dark-theme.el](https://raw.githubusercontent.com/bbatsov/solarized-emacs/master/solarized-dark-theme.el) + +Add this your `.emacs.d`: + +```lisp +(add-to-list 'custom-theme-load-path "~/.emacs.d/themes") +``` + +Now you can load the theme with the interactive function `load-theme`. + + # Contributors - [Thomas Frössman](http://t.jossystem.se)