Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/manateelazycat/lazycat-theme
- Owner: manateelazycat
- Created: 2018-09-01T01:05:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-26T04:44:42.000Z (almost 2 years ago)
- Last Synced: 2023-03-15T03:26:15.293Z (over 1 year ago)
- Language: Emacs Lisp
- Homepage:
- Size: 2.49 MB
- Stars: 15
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```