diff options
author | Case Duckworth | 2021-01-26 12:21:54 -0600 |
---|---|---|
committer | Case Duckworth | 2021-01-26 12:21:54 -0600 |
commit | 80f75eb5b74c0a5bb352aa119e0275ddad1eddb5 (patch) | |
tree | 60b557f199a49e336fb943a02a029ff73cac0e40 | |
parent | Add org-agenda inspo (diff) | |
download | emacs-80f75eb5b74c0a5bb352aa119e0275ddad1eddb5.tar.gz emacs-80f75eb5b74c0a5bb352aa119e0275ddad1eddb5.zip |
Add edit-server
-rw-r--r-- | config.org | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config.org b/config.org index 49c0c89..84a9cd4 100644 --- a/config.org +++ b/config.org | |||
@@ -2087,6 +2087,23 @@ I use both Linux (at home) and Windows (at work). To make Emacs | |||
2087 | easier to use in both systems, I've included various system-specific | 2087 | easier to use in both systems, I've included various system-specific |
2088 | settings and written some ancillary scripts. | 2088 | settings and written some ancillary scripts. |
2089 | 2089 | ||
2090 | ** All systems | ||
2091 | |||
2092 | I'll put generic system-integrating code here. | ||
2093 | |||
2094 | *** Edit with Emacs | ||
2095 | |||
2096 | Install the [[https://addons.mozilla.org/en-US/firefox/addon/edit-with-emacs1/][Firefox Addon]] alongside this package to edit web forms in | ||
2097 | Emacs (or the [[https://chrome.google.com/webstore/detail/edit-with-emacs/ljobjlafonikaiipfkggjbhkghgicgoh][Chrome one]] if you... /hate/ freedom :P). | ||
2098 | |||
2099 | #+begin_src emacs-lisp :noweb-ref packages | ||
2100 | (straight-use-package 'edit-server) | ||
2101 | #+end_src | ||
2102 | |||
2103 | #+begin_src emacs-lisp :noweb-ref hooks | ||
2104 | (add-hook 'after-init-hook #'edit-server-start) | ||
2105 | #+end_src | ||
2106 | |||
2090 | ** Linux (home) | 2107 | ** Linux (home) |
2091 | :PROPERTIES: | 2108 | :PROPERTIES: |
2092 | :header-args: :noweb-ref linux-specific | 2109 | :header-args: :noweb-ref linux-specific |