Remove the edit-server package

This commit is contained in:
Gergely Polonkai 2023-10-24 06:21:22 +02:00
parent f068563eae
commit afc5474af6
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 0 additions and 21 deletions

View File

@ -2231,27 +2231,6 @@ I dont always use the package menu, but when i do, i want to do it in style
(use-package ansible)
#+end_src
** Edit browser textareas in Emacs
#+begin_src emacs-lisp
(use-package edit-server
:ensure t
: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-alist
'((name . "Edit with Emacs FRAME")
(top . 200)
(left . 200)
(width . 80)
(height . 25)
(minibuffer . t)
(menu-bar-lines . t)
(window-system . x))))
#+end_src
** Mastodon
#+begin_src emacs-lisp