Updated some docs

This commit is contained in:
Chad Nelson 2025-02-27 12:25:24 -07:00
parent 855dd5770b
commit c3671f3761
5 changed files with 21 additions and 0 deletions

1
.gitignore vendored
View file

@ -18,3 +18,4 @@ request
/mastodon.plstore
/persist/
.cache
src/**/*.md

View file

@ -1,3 +1,7 @@
* Eglot
[[https://github.com/joaotavora/eglot]]
#+begin_src elisp
(use-package eglot
:config

View file

@ -1,3 +1,4 @@
* Emacs
#+begin_src elisp
(use-package emacs
:bind

View file

@ -1,3 +1,5 @@
* Edraw
#+begin_src elisp
(use-package edraw-org
:vc (:url "https://github.com/misohena/el-easydraw"

View file

@ -0,0 +1,13 @@
* Grip Mode
[[https://github.com/seagle0128/grip-mode]]
#+begin_src elisp
(use-package grip-mode
:ensure t
:hook ((markdown-mode org-mode) . grip-mode) (window-configuration-change-hook . grip-browse-preview)
:config
(setq grip-command 'go-grip) ;; auto, grip, go-grip or mdopen
(setq grip-update-after-change t))
#+end_src