Add edit with emacs

This commit is contained in:
Nathan McCarty 2022-10-09 21:55:15 -04:00
parent 3375db2ea6
commit 81a8bd1d4e
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
3 changed files with 12 additions and 1 deletions

View File

@ -872,3 +872,13 @@ We need to tell mu4e to rename files when they are moved, or else mbsync will br
(after! mu4e
(setq mu4e-change-filenames-when-moving t))
#+end_src
** [[https://github.com/stsquad/emacs_chrome][Edit with Emacs]]
#+begin_src emacs-lisp
(use-package! edit-server
:commands edit-server-start
:init (if after-init-time
(edit-server-start)
(add-hook 'after-init-hook
#'(lambda() (edit-server-start))))
:config (setq edit-server-new-frame nil))
#+end_src

View File

@ -15,7 +15,7 @@
;; directory (for easy access to its source code).
(doom! :completion
(company +childframe +tng) ; the ultimate code completion backend
(company +childframe) ; the ultimate code completion backend
(ivy +fuzzy +precient +childframe +icons)
:ui

View File

@ -67,3 +67,4 @@
(unpin! org-roam)
(package! websocket)
(package! org-roam-ui)
(package! edit-server)