2015-11-14 23:43:32 +01:00
#+STARTUP : showall
2023-04-15 09:29:41 +02:00
#+STARTUP : inlineimages
2015-11-14 23:43:32 +01:00
2013-01-09 02:43:13 +01:00
* Yoshi theme
2023-04-15 09:32:20 +02:00
My cat is named Yoshi and I was just working on a random new theme, which was =new-theme= for a while. I couldn't think of a name so I named it after him.
2013-01-09 02:45:36 +01:00
2014-12-27 22:10:49 +01:00
** Screenshot
2023-04-15 09:32:20 +02:00
[[file:screenshot.png ]]
2014-12-27 22:10:49 +01:00
2015-11-14 23:43:32 +01:00
** Themed modes
2023-04-15 09:32:20 +02:00
Here is a list of the themed major and minor modes. Certain modes may only have been themed partially and this list may not be complete.
- Circe
- Compilation mode
- CSS mode
- Diff
- Dired
- Ediff
- ERC
- ERT Test results
- Eshell
- Flycheck
- Gnus
- Helm
- Highlight indent
- Hydra
- Identica
- Ido
- Jabber
- JS2 Mode
- Magit
- Markdown
- Message mode
- Org mode
- Outline mode
- Rainbow delimiters
- ReStructured Text mode
- Sh mode
- Slime repl
- Smerge
- Term mode
- Texinfo mode
- Whitespace mode
2015-11-14 23:43:32 +01:00
2014-12-27 22:10:49 +01:00
** License
2023-04-15 09:32:20 +02:00
This project is licensed under the GNU General Public License version 3 or (at your option) any later version. You can read the terms of this license [[file:COPYING ][here ]].
2014-12-27 22:10:49 +01:00
2013-01-09 02:45:36 +01:00
** Installation
2023-04-15 09:32:20 +02:00
Installation comes in two flavors.
2015-09-11 00:43:06 +02:00
*** Installation with ELPA
2023-04-15 09:32:20 +02:00
To install Yoshi theme using the built-in Emacs package manager you should have [[https://melpa.org/ ][MELPA ]] or [[https://marmalade-repo.org/ ][Marmalade ]] in your =package-archives= list. When that's ready you can =M-x list-packages= , find =yoshi-theme= , press =i= and =x= and you're done.
2015-09-11 00:43:06 +02:00
*** Installation from git
2023-04-15 09:32:20 +02:00
To use a version from the latest git checkout you should clone the repository and then add the directory to your =custom-theme-load-path= .
2015-09-11 00:43:06 +02:00
2023-04-15 09:32:20 +02:00
In a shell execute:
2015-09-11 00:43:06 +02:00
2023-04-15 09:32:20 +02:00
#+BEGIN_EXAMPLE
cd ~/
git clone git://github.com/ryuslash/yoshi-theme.git
#+END_EXAMPLE
2015-09-11 00:43:06 +02:00
2023-04-15 09:32:20 +02:00
Then add to your =~/.emacs.d/init.el= :
2015-09-11 00:43:06 +02:00
2023-04-15 09:32:20 +02:00
#+BEGIN_SRC emacs-lisp
(add-to-list 'custom-theme-load-path (expand-file-name "~/yoshi-theme"))
#+END_SRC
2015-09-11 00:43:06 +02:00
** Enabling Yoshi theme
2023-04-15 09:32:20 +02:00
Once you've installed Yoshi theme you can either use =M-x load-theme= to enable it interactively for the current session, or put the following in your =~/.emacs.d/init.el= :
2015-09-11 00:43:06 +02:00
2023-04-15 09:32:20 +02:00
#+BEGIN_SRC emacs-lisp
(load-theme 'yoshi :no-confirm)
#+END_SRC
2016-02-26 21:47:24 +01:00
** Installation in Spacemacs
2023-04-15 09:32:20 +02:00
Edit your .spacemacs file ~(SPC f e d)~ and add the ~yoshi-theme~ package:
#+BEGIN_SRC emacs-lisp
dotspacemacs-additional-packages '(yoshi-theme)
#+END_SRC
Add the theme to the top of the themes list to make it the default theme, for example:
#+BEGIN_SRC emacs-lisp
dotspacemacs-themes '(yoshi
monokai
spacemacs-dark
spacemacs-light
solarized-light
solarized-dark
leuven
zenburn)
#+END_SRC