diff options
author | Thanos Apollo <[email protected]> | 2023-10-02 09:27:40 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-02 12:33:44 +0300 |
commit | 622d72a5b901709b2ed8a9df576fbd03ca46d187 (patch) | |
tree | 1edf2e98ffe461b45f0c84a13553af0f5a2bbe74 | |
parent | 1d660ae0313450cb116870dcc62d7251fb9c9180 (diff) |
Update README
Add straight.el installation instructions
-rw-r--r-- | README.md | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -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") ``` |