How to enable Tiles #91
-
I confirm that...
What is your question?Hi, while upgrading Doom emacs, I thought I saw a receipe of Tiles (https://github.com/ctanas/tiles) a new module for notetaking in doom emacs to be enabled. Could you please help on how to enable this receipe in Doom Emacs System informationNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I'm guessing you saw that in the commit log for MELPA. Doom doesn't have a module for it, so you'll have to install and configure it yourself. ;;; add to $DOOMDIR/packages.el
(package! tiles);;; add to $DOOMDIR/config.el
(use-package tiles
:config
;; Config for tiles goes here
)Run I'm not familiar with the package, so you'll have to follow its documentation for more. |
Beta Was this translation helpful? Give feedback.
I'm guessing you saw that in the commit log for MELPA. Doom doesn't have a module for it, so you'll have to install and configure it yourself.
;;; add to $DOOMDIR/packages.el (package! tiles)Run
doom syncand restart Emacs.I'm not familiar with the package, so you'll have to follow its documentation for more.