diff options
author | fpi | 2022-02-20 18:22:19 +0100 |
---|---|---|
committer | fpi | 2022-03-17 14:39:52 +0100 |
commit | eeb68ce022f3b1387d607865a7293dca96c2eb59 (patch) | |
tree | d288c5cd539be3a913ea0e3544a1338259bf1fff | |
parent | Add auto +x on scripts and move auto-insert (diff) |
Add new device
-rw-r--r-- | emacs-init.org | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/emacs-init.org b/emacs-init.org index d388b47..a445d31 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -381,7 +381,10 @@ To support different settings on different devices storing some device informati #+begin_src emacs-lisp (setq fpi/current-device (system-name)) (setq fpi/devices - '(("pan" + '(("peter" + (:type desktop + :os win10)) + ("pan" (:type desktop :wm exwm)) ("xcarb" @@ -5314,15 +5317,6 @@ Support for HTML code blocks with proper syntax highlighting. See [[https://gith (advice-add 'eww-display-html :around 'eww-display-html--override-shr-external-rendering-functions)))) #+END_SRC -** Auto-Insert -#+begin_src emacs-lisp -(use-package autoinsert - :config - (define-auto-insert '("\\.sh\\'" . "Shell script skeleton") - '("" - "#!/usr/bin/env bash" \n \n)) - (auto-insert-mode 1)) -#+end_src ** Email For the setup of external mail specific programs see [[file:mail.org]]. *** Sending mail |