aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-10-02 09:27:40 +0300
committerThanos Apollo <[email protected]>2023-10-02 12:33:44 +0300
commit622d72a5b901709b2ed8a9df576fbd03ca46d187 (patch)
tree1edf2e98ffe461b45f0c84a13553af0f5a2bbe74 /README.md
parent1d660ae0313450cb116870dcc62d7251fb9c9180 (diff)
Update README
Add straight.el installation instructions
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 16 insertions, 4 deletions
diff --git a/README.md b/README.md
index 98a6cf2..f6a58c2 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Yeetube.el
+# Yeetube
## About
- Emacs YouTube Front-End
@@ -14,11 +14,23 @@ displayed in a proced-like buffer.
## Installation
+### Straight.el
+
+``` emacs-lisp
+(straight-use-package
+ '(yeetube :type git
+ :host nil
+ :repo "https://git.thanosapollo.com/yeetube"))
+```
+
+
+### Manual
``` shell
-# Get yeetube using git
-git clone https://git.thanosapollo.com/yeetube
+$ git clone https://git.thanosapollo.com/yeetube
+```
-# Load yeetube
+Add this to your emacs configuration
+``` emacs-lisp
(add-to-list 'load-path "/path/to/yeetube")
(load-file "~/path/to/yeetube.el")
```