Richard Kim
Richard Kim
I too ran into this problem. In my case `:spacediminish` is indeed used before it is added to `use-package-keywords` as follows. The code for `configuration-layer//load` function is shown below with...
The full stack trace of the error is shown below. Debugger entered--Lisp error: (error "use-package: Unrecognized keyword: :spacediminish") signal(error ("use-package: Unrecognized keyword: :spacediminish")) error("use-package: %s" "Unrecognized keyword: :spacediminish") use-package-normalize-plist(indent-guide (:spacediminish...
I use `straight.el` to install packages rather than `package.el`. I don't know whether this matters, but I thought it might be relevant information to share.
My reading of treemacs documentation indicates that "honoring current directory" is not how it is supposed to work. Perhaps you could try `M-x treemacs-add-and-display-current-project`.
I have been using chemacs for a long time so that I can select among several spacemacs variants, doom, scimax, and other startup files when emacs starts. I do have...
Emacs 29 now support `--init-directory` option which makes chemacs no longer necessary. See https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=8eaf04de83 Given this is this PR still relevant?
I just tried doom emacs. The backlinks work for both emacs 27 and 28 in that clicking on a link brings up the corresponding buffer. I guess I'll be comparing...
Doom works for me, and spacemacs does not. One immediate difference is that `*org-roam*` buffer contents are different. In doom `Backlinks` line is at the top, but it is second...
If I use the following as my `init.el` file, then backlinks work: ```elisp (require 'package) (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t) (package-initialize) (package-refresh-contents) (unless (package-installed-p 'use-package) (package-install 'use-package)) (require 'use-package)...
I used "vanilla" emacs 27 or 28 as well. Code I shared above was my `init.el`. With this `*org-roam*` buffer displayed lines similar to doom emacs in that the first...