Skip to content

Commit cf1f837

Browse files
committed
Add read
1 parent 45f15e8 commit cf1f837

File tree

1 file changed

+61
-1
lines changed

1 file changed

+61
-1
lines changed

README.md

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,62 @@
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/chatgpt-sideline.svg)](https://jcs-emacs.github.io/jcs-elpa/#/chatgpt-sideline)
3+
14
# chatgpt-sideline
2-
Sideline support for chatgpt
5+
> Sideline support for chatgpt
6+
7+
## 💾 Installation
8+
9+
#### package.el
10+
11+
This package is available from [JCS-ELPA](https://jcs-emacs.github.io/jcs-elpa/).
12+
Install from these repositories then you should be good to go!
13+
14+
Normally, you don't need to add `(require 'chatgpt-sideline)` to your
15+
configuration since most `'chatgpt-sideline` commands are autoload and can be
16+
called without loading the module!
17+
18+
#### use-package
19+
20+
If you are using [use-package](https://www.emacswiki.org/emacs/UsePackage),
21+
add the following to your `init.el` file:
22+
23+
```elisp
24+
(use-package chatgpt-sideline :ensure t)
25+
```
26+
27+
or with `straight.el`:
28+
29+
```elisp
30+
(use-package chatgpt-sideline
31+
:straight (chatgpt-sideline :type git :host github :repo "emacs-openai/chatgpt-sideline"))
32+
```
33+
34+
#### Manual installation
35+
36+
Copy all `.el` files in this repository to `~/.emacs.d/lisp` and add the following:
37+
38+
```elisp
39+
(add-to-list 'load-path "~/.emacs.d/lisp/")
40+
(require 'chatgpt-sideline)
41+
```
42+
43+
## Quickstart
44+
45+
```elisp
46+
(use-package chatgpt-sideline
47+
:hook (after-init . sideline-mode)
48+
:init
49+
(setq sideline-backends-right '(chatgpt-sideline)))
50+
```
51+
52+
## Contribute
53+
54+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)
55+
[![Elisp styleguide](https://img.shields.io/badge/elisp-style%20guide-purple)](https://github.com/bbatsov/emacs-lisp-style-guide)
56+
[![Donate on paypal](https://img.shields.io/badge/paypal-donate-1?logo=paypal&color=blue)](https://www.paypal.me/jcs090218)
57+
[![Become a patron](https://img.shields.io/badge/patreon-become%20a%20patron-orange.svg?logo=patreon)](https://www.patreon.com/jcs090218)
58+
59+
If you would like to contribute to this project, you may either
60+
clone and make pull requests to this repository. Or you can
61+
clone the project and establish your own branch of this tool.
62+
Any methods are welcome!

0 commit comments

Comments
 (0)