summaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org19
1 files changed, 15 insertions, 4 deletions
diff --git a/README.org b/README.org
index 1f7f0eb..c41b5d6 100644
--- a/README.org
+++ b/README.org
@@ -1,14 +1,18 @@
* Pache Dark
+[![MELPA](http://melpa.org/packages/pache-dark-theme-badge.svg)](http://melpa.org/#/pache-dark-theme)
+
A dark theme with high contrast. The colours are based on the gruvbox colour scheme by [[https://github.com/morhetz/gruvbox][morhetz]].
The code base is adapted from [[https://github.com/rexim/gruber-darker-theme][gruber-darker]] theme.
# Screenshot #
-[[./screenshot.png]]
+[[./screenshot-2.png]]
* Installation
+** From source
+
Download the theme to your local directory. You can do it through `git
clone` command:
@@ -21,8 +25,15 @@ add the following to your emacs config file somewhere (.emacs,
init.el, whatever):
#+BEGIN_SRC emacs-lisp
-(add-to-list 'custom-theme-load-path
- "/path/to/pache-dark-theme/")
+ (add-to-list 'custom-theme-load-path
+ "/path/to/pache-dark-theme/")
+
+ (load-theme 'pache-dark :noconfirm)
#+END_SRC
-Use `M-x customize-themes` to change your current theme.
+** With package.el
+
+You can install `pache-dark-theme` from [[https://melpa.org/#/pache-dark-theme][MELPA]]. You can just `M-x package-install RET pache-dark-theme` and then add the following to your Emacs' config:
+#+BEGIN_SRC emacs-lisp
+ (load-theme 'pache-dark :noconfirm)
+#+END_SRC