(docs): remove apt installation (#1634)

Apt installation is only valid for Org-roam v1. To be re-added when
Debian updates their repos. Closes #1631.
This commit is contained in:
Jethro Kuan
2021-07-20 15:10:01 +08:00
committed by GitHub
parent 23605546d8
commit e5c735c86a
2 changed files with 9 additions and 34 deletions

View File

@ -198,17 +198,6 @@ using:
M-x package-install RET org-roam RET
#+END_EXAMPLE
** Installing from Apt
Users of Debian 11 or later or Ubuntu 20.10 or later can simply install Org-roam
using Apt:
#+BEGIN_SRC bash
apt-get install elpa-org-roam
#+END_SRC
Org-roam will then be autoloaded into Emacs.
** Installing from Source
You may install Org-roam directly from the repository on [[https://github.com/org-roam/org-roam][GitHub]] if you like.

View File

@ -92,7 +92,6 @@ General Public License for more details.
Installation
* Installing from MELPA::
* Installing from Apt::
* Installing from Source::
* Installation Troubleshooting::
@ -337,7 +336,6 @@ development repository.
@menu
* Installing from MELPA::
* Installing from Apt::
* Installing from Source::
* Installation Troubleshooting::
@end menu
@ -393,18 +391,6 @@ using:
M-x package-install RET org-roam RET
@end example
@node Installing from Apt
@section Installing from Apt
Users of Debian 11 or later or Ubuntu 20.10 or later can simply install Org-roam
using Apt:
@example
apt-get install elpa-org-roam
@end example
Org-roam will then be autoloaded into Emacs.
@node Installing from Source
@section Installing from Source
@ -654,7 +640,7 @@ Org-roam is available on startup, place this in your Emacs configuration:
(org-roam-setup)
@end lisp
To build the cache manually, run @code{M-x org-roam-db-build-cache}. Cache builds may
To build the cache manually, run @code{M-x org-roam-db-sync}. Cache builds may
take a while the first time, but subsequent builds are often instantaneous
because they only reprocess modified files.
@ -844,14 +830,14 @@ For users that prefer using a side-window for the org-roam buffer, the following
example configuration should provide a good starting point:
@lisp
(add-to-list 'display-buffer-alist
'("\\*org-roam\\*"
(display-buffer-in-side-window)
(side . right)
(slot . 0)
(window-width . 0.33)
(window-parameters . ((no-other-window . t)
(no-delete-other-windows . t)))))
(add-to-list 'display-buffer-alist
'("\\*org-roam\\*"
(display-buffer-in-side-window)
(side . right)
(slot . 0)
(window-width . 0.33)
(window-parameters . ((no-other-window . t)
(no-delete-other-windows . t)))))
@end lisp
@node Styling the Org-roam buffer