emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/gotham-theme 7f8a6bf900 205/214: Convert README to Markdow


From: ELPA Syncer
Subject: [nongnu] elpa/gotham-theme 7f8a6bf900 205/214: Convert README to Markdown, update metadata
Date: Fri, 7 Jan 2022 17:58:55 -0500 (EST)

branch: elpa/gotham-theme
commit 7f8a6bf9002f7afc31d05127e28041547688fd2c
Author: Vasilij Schneidermann <mail@vasilij.de>
Commit: Vasilij Schneidermann <mail@vasilij.de>

    Convert README to Markdown, update metadata
---
 README.md       | 53 ++++++++++++++++++++++++++++++++++++++++++++
 README.rst      | 69 ---------------------------------------------------------
 gotham-theme.el |  6 ++---
 3 files changed, 56 insertions(+), 72 deletions(-)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000000..55e03355e2
--- /dev/null
+++ b/README.md
@@ -0,0 +1,53 @@
+![][image]
+
+## About
+
+Gotham is a **very dark** Emacs color theme.  It's a port of the
+[Gotham theme for Vim] and tries adhering closely to the original.
+There is support for both GUI and terminal Emacs.  The terminal
+version assumes that your terminal emulator comes with a customized
+16-color palette from the [Gotham contrib repository], however you can
+enable 256 color support by customizing `gotham-tty-extended-palette`
+in exchange for a negligible amount of color degradation.
+
+## Screenshots
+
+![][screenshot]
+
+Thanks to [Norbert Klar] for the following three!
+
+![][go-screenshot]
+
+![][go-screenshot2]
+
+![][go-screensho3]
+
+## Installation
+
+To install the theme via `package.el`, set up the [Marmalade] or [MELPA
+(Stable)] repository if you haven't already and do
+`M-x package-install RET gotham-theme RET`.
+
+Alternatively, you can install the theme manually by downloading
+`gotham-theme.el` and putting it in a suitable location such as
+`~/.emacs.d/themes/`.  Add the following to your init file:
+
+    (add-to-list 'custom-theme-load-path (expand-file-name 
"~/.emacs.d/themes/"))
+
+Once the theme is installed, you can enable it with `M-x load-theme
+RET gotham RET`.  Make sure no other themes are enabled with `M-x
+disable-theme`.  To enable the theme automatically at startup, add the
+following to your init file:
+
+    (load-theme 'gotham t)
+
+[image]: img/gotham.png
+[Gotham theme for Vim]: https://github.com/whatyouhide/vim-gotham
+[Gotham contrib repository]: https://github.com/whatyouhide/gotham-contrib
+[screenshot]: img/scrot.png
+[Norbert Klar]: https://github.com/norbertklar
+[go-screenshot]: img/go.png
+[go-screenshot2]: img/go2.png
+[go-screenshot3]: img/go3.png
+[Marmalade]: https://marmalade-repo.org/
+[MELPA (Stable)]: http://melpa.org/
diff --git a/README.rst b/README.rst
deleted file mode 100644
index 3fe03e42d8..0000000000
--- a/README.rst
+++ /dev/null
@@ -1,69 +0,0 @@
-gotham-theme
-============
-
-.. image:: https://raw.github.com/wasamasa/gotham-theme/master/img/gotham.png
-
-..
-
-    It's the colorscheme we set that defines us. (Batman)
-
-About
------
-
-Gotham is a **very dark** Emacs color theme.  It's a port of the
-`Gotham theme for Vim <https://github.com/whatyouhide/vim-gotham>`_
-and tries adhering closely to the original.  There is support for both
-GUI and terminal Emacs.  The terminal version assumes that your
-terminal emulator comes with a customized 16-color palette from the
-`Gotham contrib repository
-<https://github.com/whatyouhide/gotham-contrib>`_, however you can
-enable 256 color support by customizing
-``gotham-tty-extended-palette`` in exchange for a negligible amount of
-color degradation.
-
-Screenshots
------------
-
-.. image:: https://raw.github.com/wasamasa/gotham-theme/master/img/scrot.png
-
-Thanks to `Norbert Klar <https://github.com/norbertklar>`_ for the
-following three!
-
-.. image:: https://raw.github.com/wasamasa/gotham-theme/master/img/go.png
-
-.. image:: https://raw.github.com/wasamasa/gotham-theme/master/img/go2.png
-
-.. image:: https://raw.github.com/wasamasa/gotham-theme/master/img/go3.png
-
-Installation
-------------
-
-To install the theme via ``package.el``, set up the `Marmalade
-<https://marmalade-repo.org/>`_ or `MELPA (Stable)
-<http://melpa.org/>`_ repository if you haven't already and do ``M-x
-package-install RET gotham-theme RET``.
-
-Alternatively, you can install the theme manually by downloading
-``gotham-theme.el`` and putting it in a suitable location such as
-``~/.emacs.d/themes/``.  Add the following to your init file:
-
-.. code:: cl
-
-    (add-to-list 'custom-theme-load-path (expand-file-name 
"~/.emacs.d/themes/"))
-
-Once the theme is installed, you can enable it with ``M-x load-theme
-RET gotham RET``.  Make sure no other themes are enabled with ``M-x
-disable-theme``.  To enable the theme automatically at startup, add
-the following to your init file:
-
-.. code:: cl
-
-    (load-theme 'gotham t)
-
-Contributing
-------------
-
-If you find bugs, have suggestions or any other problems, feel free to
-report an issue on the issue tracker or hit me up on IRC, I'm always on
-``#emacs``.  Patches are welcome, too, just fork, work on a separate
-branch and open a pull request with it.
diff --git a/gotham-theme.el b/gotham-theme.el
index 3ef20bce4a..bed2144a5f 100644
--- a/gotham-theme.el
+++ b/gotham-theme.el
@@ -1,9 +1,9 @@
 ;;; gotham-theme.el --- A very dark Emacs color theme.
 
-;; Copyright (C) 2014-2017 Vasilij Schneidermann <v.schneidermann@gmail.com>
+;; Copyright (C) 2014 Vasilij Schneidermann <mail@vasilij.de>
 
-;; Author: Vasilij Schneidermann <v.schneidermann@gmail.com>
-;; URL: https://github.com/wasamasa/gotham-theme
+;; Author: Vasilij Schneidermann <mail@vasilij.de>
+;; URL: https://depp.brause.cc/gotham-theme
 ;; Version: 1.1.8
 
 ;; This file is NOT part of GNU Emacs.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]