Install one.el
Table of content
Manually
With package-install
one.el
is also available on Melpa so you can install it like this:
M-x package-install <RET> one <RET>
With straight.el
If you're using straight.el, to install one.el
you just have to add
this sexp to your init file:
(straight-use-package
'(one :type git :host github :repo "tonyaldon/one.el"
:build (:not compile)))
Note that :build (:not compile)
is important. It tells straight.el
not to byte compile one.el
. Something happened in straight.el
between commits 3eca39d
and b3760f5
which broke byte compilation of
one.el
if done by straight.el
.
Let's go
Now you can create a new website by calling one-default-new-project
(preferably in an empty directory) and you can build it by calling
one-build
command.
If this is the first time you try one.el
reading Getting started
page might be helpful.