(chore): change main branch to master (#250)

This commit is contained in:
Jethro Kuan
2020-03-08 15:05:57 +08:00
committed by GitHub
parent 6eb7238daf
commit 3fccaef967
2 changed files with 26 additions and 26 deletions

View File

@ -40,7 +40,7 @@ The recommended method is using use-package and straight, or a similar package m
(use-package org-roam (use-package org-roam
:hook :hook
(after-init . org-roam-mode) (after-init . org-roam-mode)
:straight (:host github :repo "jethrokuan/org-roam" :branch "develop") :straight (:host github :repo "jethrokuan/org-roam")
:custom :custom
(org-roam-directory "/path/to/org-files/") (org-roam-directory "/path/to/org-files/")
:bind (:map org-roam-mode-map :bind (:map org-roam-mode-map

View File

@ -7,7 +7,7 @@ The recommended method is using [use-package][use-package] and
(use-package org-roam (use-package org-roam
:hook :hook
(after-init . org-roam-mode) (after-init . org-roam-mode)
:straight (:host github :repo "jethrokuan/org-roam" :branch "develop") :straight (:host github :repo "jethrokuan/org-roam")
:custom :custom
(org-roam-directory "/path/to/org-files/") (org-roam-directory "/path/to/org-files/")
:bind (:map org-roam-mode-map :bind (:map org-roam-mode-map
@ -31,7 +31,7 @@ git clone https://github.com/jethrokuan/org-roam/ ~/.emacs.d/elisp/org-roam
:load-path "elisp/" :load-path "elisp/"
:hook :hook
(after-init . org-roam-mode) (after-init . org-roam-mode)
:straight (:host github :repo "jethrokuan/org-roam" :branch "develop") :straight (:host github :repo "jethrokuan/org-roam")
:custom :custom
(org-roam-directory "/path/to/org-files/") (org-roam-directory "/path/to/org-files/")
:bind (:map org-roam-mode-map :bind (:map org-roam-mode-map
@ -70,7 +70,7 @@ layer that wraps Org-roam. Paste the following into a new file
```emacs-lisp ```emacs-lisp
(defconst org-roam-packages (defconst org-roam-packages
'((org-roam :location '((org-roam :location
(recipe :fetcher github :repo "jethrokuan/org-roam" :branch "develop")))) (recipe :fetcher github :repo "jethrokuan/org-roam"))))
(defun org-roam/init-org-roam () (defun org-roam/init-org-roam ()
(use-package org-roam (use-package org-roam
@ -112,7 +112,7 @@ Declare Org-roam as a package in your `~/.doom.d/packages.el`:
;; ~/.doom.d/packages.el ;; ~/.doom.d/packages.el
(package! org-roam (package! org-roam
:recipe (:host github :repo "jethrokuan/org-roam" :branch "develop")) :recipe (:host github :repo "jethrokuan/org-roam"))
``` ```
Subsequently, in your `~/.doom.d/config.el` file, configure Org-roam: Subsequently, in your `~/.doom.d/config.el` file, configure Org-roam: