summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..bacb41d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,31 @@
+
+# Gnosis
+
+## About
+*Gnosis is currently under development*
+
+Gnosis is a [Spaced
+Repetition](https://en.wikipedia.org/wiki/Spaced_repetition) package
+for GNU Emacs.
+
+## Installation
+### Straight.el
+``` emacs-lisp
+(straight-use-package
+ '(gnosis :type git
+ :host nil
+ :repo "https://git.thanosapollo.org/gnosis"))
+```
+
+### Manual
+``` shell
+$ git clone https://git.thanosapollo.org/gnosis
+```
+
+*Add this to your emacs configuration:*
+
+``` emacs-lisp
+ (add-to-list 'load-path "/path/to/gnosis")
+ (load-file "~/path/to/gnosis.el")
+ (require 'gnosis)
+```