From 1b31a86ba2f8fa92680ea9585d2df3984d8423fb Mon Sep 17 00:00:00 2001 From: jao Date: Wed, 9 Mar 2022 20:41:24 +0000 Subject: yaml mode and, for the fun of it, osm --- init.org | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'init.org') diff --git a/init.org b/init.org index d3e0723..299b718 100644 --- a/init.org +++ b/init.org @@ -2639,6 +2639,11 @@ (venv-initialize-eshell) (jao-compilation-env "VIRTUAL_ENV")) #+end_src +* Text/data formats +*** YAML + #+begin_src emacs-lisp + (use-package yaml-mode :ensure t) + #+end_src *** JSON #+BEGIN_SRC emacs-lisp (use-package json-mode :ensure t) @@ -2656,6 +2661,21 @@ :commands (gnuplot-mode gnuplot-make-buffer) :init (add-to-list 'auto-mode-alist '("\\.gp$" . gnuplot-mode))) #+END_SRC +*** Maps + #+begin_src emacs-lisp + (use-package osm + :ensure t + :init + (with-eval-after-load 'org (require 'osm-ol)) + :config + (transient-define-prefix jao-transient-osm () + ["Open Street Maps" + ("s" "search" osm-search) + ("g" "goto" osm-goto) + ("b" "jump to bookmark" osm-bookmark-jump) + ("t" "server" osm-server)]) + :bind ("C-c M" . #'jao-transient-osm)) + #+end_src * Network *** nm applet #+begin_src emacs-lisp -- cgit v1.2.3