-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to install this package? #3
Comments
Hey kkrusher, The easiest way is by using You can install use-package from MELPA; straight requires this in your init.el: (defvar bootstrap-version)
(let ((bootstrap-file
(expand-file-name "straight/repos/straight.el/bootstrap.el" user-emacs-directory))
(bootstrap-version 6))
(unless (file-exists-p bootstrap-file)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.githubusercontent.com/radian-software/straight.el/develop/install.el"
'silent 'inhibit-cookies)
(goto-char (point-max))
(eval-print-last-sexp)))
(load bootstrap-file nil 'nomessage)) then you can load org-noter: (use-package org-noter
:straight
(:repo "dmitrym0/org-noter-plus"
:host github
:type git
:files ("*"))) |
@dmitry if you merge my
|
@dmitrym0 To make this properly work, I have to modify your straight-use-package block as follows: (use-package org-noter
:straight
(:repo "dmitrym0/org-noter-plus"
:host github
:type git
:files ("*.el" "modules/*.el" "other/*.el")) ; include modules and auxiliaries
:config
;; Explictly load required modules
(require 'org-noter-pdf)
(require 'org-noter-dynamic-block)
) Otherwise, if I open an org-noter document, there will be an error message that says "This document handler is not supported." and the pdf-view frame will not be shown. |
Hello, I am a beginner of emacs. To install a package in melpa is easy. But how can I install this package? Can you give me a config in your init.el?
The text was updated successfully, but these errors were encountered: