Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/manateelazycat/lazycat-theme

Cool hacker's emacs theme, but won't hurt your eye
https://github.com/manateelazycat/lazycat-theme

Last synced: 12 days ago
JSON representation

Cool hacker's emacs theme, but won't hurt your eye

Awesome Lists containing this project

README

        


## LazyCat's Emacs Theme
lazycat-theme is my theme package, code base fork from doom-theme and disable mode-line default (see also [awesome-tray](https://github.com/manateelazycat/awesome-tray))

### Installation

1. Clone this repository

```
git clone --depth=1 https://github.com/manateelazycat/lazycat-theme.git
```

2. Move lazycat-theme to your load-path.

The load-path is usually `~/elisp/`.

It's set in your `~/.emacs` or `~/.emacs.d/init.el` like this:

```elisp
(add-to-list 'load-path (expand-file-name "~/elisp"))
(require 'lazycat-theme)
```

### Usage

#### Load theme

Switch to dark theme:
```elisp
(lazycat-theme-load-dark)
```

Switch to light theme:

```elisp
(lazycat-theme-load-light)
```

#### Toggle theme

```elisp
(lazycat-theme-toggle)
```

#### Load theme with current time

```elisp
(lazycat-theme-load)
```

#### Check the time every hour then adjusted theme with sunrise

```elisp
(lazycat-theme-load-with-sunrise)
```