You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.5 KiB
1.5 KiB
Conf
Support for different configuration languages.
Config
Add support for different configuration languages, or other modules that don't fit in their own module (yet).
HTTP
Interact with HTTP
endpoints using the ob-http
1 package. You can see how it works in my post here2. It adds interactive HTTP
blocks that can output their results in place, within an org-mode
buffer.
(use-package ob-http :after org :config (org-babel-do-load-languages 'org-babel-load-languages '((http . t))))
YAML
Support for YAML3 files.
(use-package yaml-mode)
gRPC
Support for gRPC4 protocol buffer definition files.
(use-package protobuf-mode :after org :config (add-to-list 'org-structure-template-alist '("pb" . "src protobuf")))