-
Notifications
You must be signed in to change notification settings - Fork 48
/
30.setup-org-roam.md
77 lines (42 loc) · 1.75 KB
/
30.setup-org-roam.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Still work in progress
# Set up Org-roam
## Install MSYS2
![](images/2021-08-07T145656.png)
![](images/2021-08-07T145709.png)
Run MSYS2 after installation completes.
![](images/2021-08-07T145907.png)
You can simply install `gcc` by typing:
pacman -S gcc
![](images/2021-08-07T150326.png)
You could update the package repository as instructed in the documentaion; you can do it but you don't have to.
## Install Org-roam in Emacs
```
;; Packages
(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-initialize)
(setq package-check-signature nil)
```
![](images/2021-08-07T150854.png)
It is important to set this:
(setq package-check-signature nil)
Otherwise, you will get an error message after running `package-list-packges`
error in process filter: package--check-signature-content: Failed to verify signature: "archive-contents.sig"
Wait for a while (possibly 30 seconds or so) until you see "Package refresh done" message in minibuffer.
![](images/2021-08-07T151431.png)
Filter by name
![](images/2021-08-07T151554.png)
Type "org-roam", press Enter, and you will get this list:
![](images/2021-08-07T151647.png)
Click on `org-roam` and click on the "Install" button in the bottom half of the screen that opens.
![](images/2021-08-07T151736.png)
![](images/2021-08-07T151753.png)
During hte installation, you will see "Comiling EmacSQL SQLite binary ..." message. This will take a while.
![](images/2021-08-07T151908.png)
After the installation process.
![](images/2021-08-07T151925.png)
## Configure Org-roam in `.emacs` file
`make-directory` needs to be commented out after the inital creation.
![](images/2021-08-07T152843.png)
The process works.
![](images/2021-08-07T152917.png)