Add edit with emacs
This commit is contained in:
parent
3375db2ea6
commit
81a8bd1d4e
10
config.org
10
config.org
|
@ -872,3 +872,13 @@ We need to tell mu4e to rename files when they are moved, or else mbsync will br
|
||||||
(after! mu4e
|
(after! mu4e
|
||||||
(setq mu4e-change-filenames-when-moving t))
|
(setq mu4e-change-filenames-when-moving t))
|
||||||
#+end_src
|
#+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
|
||||||
|
|
2
init.el
2
init.el
|
@ -15,7 +15,7 @@
|
||||||
;; directory (for easy access to its source code).
|
;; directory (for easy access to its source code).
|
||||||
|
|
||||||
(doom! :completion
|
(doom! :completion
|
||||||
(company +childframe +tng) ; the ultimate code completion backend
|
(company +childframe) ; the ultimate code completion backend
|
||||||
(ivy +fuzzy +precient +childframe +icons)
|
(ivy +fuzzy +precient +childframe +icons)
|
||||||
|
|
||||||
:ui
|
:ui
|
||||||
|
|
|
@ -67,3 +67,4 @@
|
||||||
(unpin! org-roam)
|
(unpin! org-roam)
|
||||||
(package! websocket)
|
(package! websocket)
|
||||||
(package! org-roam-ui)
|
(package! org-roam-ui)
|
||||||
|
(package! edit-server)
|
||||||
|
|
Loading…
Reference in New Issue