Skip to content

Commit f42f283

Browse files
committed
add readme
1 parent 336c160 commit f42f283

File tree

1 file changed

+87
-1
lines changed

1 file changed

+87
-1
lines changed

README.md

Lines changed: 87 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,88 @@
1+
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
2+
[![JCS-ELPA](https://raw.githubusercontent.com/jcs-emacs/badges/master/elpa/v/sideline-emoji.svg)](https://jcs-emacs.github.io/jcs-elpa/#/sideline-emoji)
3+
4+
<a href="#"><img align="right" src="https://raw.githubusercontent.com/emacs-sideline/sideline/master/etc/logo.png" width="20%"></a>
15
# sideline-emoji
2-
Show emoji information with sideline
6+
> Show emoji information with sideline
7+
8+
[![CI](https://github.com/emacs-sideline/sideline-emoji/actions/workflows/test.yml/badge.svg)](https://github.com/emacs-sideline/sideline-emoji/actions/workflows/test.yml)
9+
10+
## 🔨 Quickstart
11+
12+
```elisp
13+
(use-package sideline-emoji
14+
:hook (after-init . sideline-mode)
15+
:init
16+
(setq sideline-backends-right '(sideline-emoji)))
17+
```
18+
19+
## 🛠️ Contribute
20+
21+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
22+
[![Elisp styleguide](https://img.shields.io/badge/elisp-style%20guide-purple)](https://github.com/bbatsov/emacs-lisp-style-guide)
23+
[![Donate on paypal](https://img.shields.io/badge/paypal-donate-1?logo=paypal&color=blue)](https://www.paypal.me/jcs090218)
24+
[![Become a patron](https://img.shields.io/badge/patreon-become%20a%20patron-orange.svg?logo=patreon)](https://www.patreon.com/jcs090218)
25+
26+
If you would like to contribute to this project, you may either
27+
clone and make pull requests to this repository. Or you can
28+
clone the project and establish your own branch of this tool.
29+
Any methods are welcome!
30+
31+
### 🔬 Development
32+
33+
To run the test locally, you will need the following tools:
34+
35+
- [Eask](https://emacs-eask.github.io/)
36+
- [Make](https://www.gnu.org/software/make/) (optional)
37+
38+
Install all dependencies and development dependencies:
39+
40+
```sh
41+
$ eask install-deps --dev
42+
```
43+
44+
To test the package's installation:
45+
46+
```sh
47+
$ eask package
48+
$ eask install
49+
```
50+
51+
To test compilation:
52+
53+
```sh
54+
$ eask compile
55+
```
56+
57+
**🪧 The following steps are optional, but we recommend you follow these lint results!**
58+
59+
The built-in `checkdoc` linter:
60+
61+
```sh
62+
$ eask lint checkdoc
63+
```
64+
65+
The standard `package` linter:
66+
67+
```sh
68+
$ eask lint package
69+
```
70+
71+
*📝 P.S. For more information, find the Eask manual at https://emacs-eask.github.io/.*
72+
73+
## ⚜️ License
74+
75+
This program is free software; you can redistribute it and/or modify
76+
it under the terms of the GNU General Public License as published by
77+
the Free Software Foundation, either version 3 of the License, or
78+
(at your option) any later version.
79+
80+
This program is distributed in the hope that it will be useful,
81+
but WITHOUT ANY WARRANTY; without even the implied warranty of
82+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
83+
GNU General Public License for more details.
84+
85+
You should have received a copy of the GNU General Public License
86+
along with this program. If not, see <https://www.gnu.org/licenses/>.
87+
88+
See [`LICENSE`](./LICENSE) for details.

0 commit comments

Comments
 (0)