diff options
-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") ``` |