Minimal config #60
Replies: 17 comments
-
Are you looking for something more than what is in this section? -> https://github.com/localauthor/zk#sample-setup-with-use-package |
Beta Was this translation helpful? Give feedback.
-
Yes, one that includes the other complementary packages and functions specified below! |
Beta Was this translation helpful? Give feedback.
-
I see now. Thank you!!! |
Beta Was this translation helpful? Give feedback.
-
Great. Let me know if you think anything in the readme might be clarified, as you get set up. |
Beta Was this translation helpful? Give feedback.
-
Installed zk through Melpa with the following in init.el:
The first time I M-x zk-new-note it works fine. The second time I keep getting a listp error: zk--generate-id: Wrong type argument: listp, "202305021716" Any ideas? |
Beta Was this translation helpful? Give feedback.
-
Do M-x |
Beta Was this translation helpful? Give feedback.
-
Oh, I know. When there is only one file in zk-directory, For now, evaluate the following, and see if 'zk-new-note` works: (defun zk-id-p (id)
"Return t if ID is already in use as a zk-id."
(when (and (listp (zk--id-list))
(member id (zk--id-list)))
t)) |
Beta Was this translation helpful? Give feedback.
-
debug: Debugger entered--Lisp error: (wrong-type-argument listp "202305021716") |
Beta Was this translation helpful? Give feedback.
-
I evaluated the code and it works now. Thank you!! |
Beta Was this translation helpful? Give feedback.
-
EMACS does not seem to like the following in the init.el:
Symbol's function definition is void: zk-setup-auto-link-buttons |
Beta Was this translation helpful? Give feedback.
-
In the ZK-Index buffer, when I click on one of the files or hit enter I get the following error: zk-index-button-action: Symbol’s value as variable is void: zk-desktop-directory |
Beta Was this translation helpful? Give feedback.
-
I added the following for the zk-luhmann as suggested: On startup, I get the following error: Symbol's value as variable is void: zk-index-map I appreciate your patience and help! Of all of the different note-taking systems I've tried, I've returned to emacs, and within the emacs ecosystem, the workflow in your videos speaks the most to me. I am hoping I can get it setup! Thank you again! |
Beta Was this translation helpful? Give feedback.
-
Not sure what changed, but I am now able to open notes from the ZK-Index-buffer! |
Beta Was this translation helpful? Give feedback.
-
Do you know longer use zk-hydra? |
Beta Was this translation helpful? Give feedback.
-
Last questions for tonight (and apologies for asking so many!) |
Beta Was this translation helpful? Give feedback.
-
I see now the zk-index-map is already in the code and so does not need to be put in the init file! For now, all that's left are questions about
Thanks again!! |
Beta Was this translation helpful? Give feedback.
-
Regarding I do use hydra, yes. My full zk setup, including my hydra, is here: https://github.com/localauthor/.emacs.d/blob/main/my-lisp/zk-setup.el As for renaming to zk format, it would take a bit of leg work to come up with a general solution --- some kind of migration utility, that would go through a directory, check for proper formatting, and then rectify --- somehow? Maybe you have some ideas? |
Beta Was this translation helpful? Give feedback.
-
Would it be possible to include a minimal config to setup everything in the readme file, perhaps using use-package? I think that would make starting out with this setup much easier!
Thanks in advance! J
Beta Was this translation helpful? Give feedback.
All reactions