From 36452b3f5fb37beff7a6287570163cfa1e0f92af Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Mon, 26 Apr 2021 19:06:35 +0200 Subject: [PATCH] Add ob packages --- bundle/bundle--package.el | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/bundle/bundle--package.el b/bundle/bundle--package.el index 1ae21d1d..aad4c1a7 100644 --- a/bundle/bundle--package.el +++ b/bundle/bundle--package.el @@ -75,13 +75,17 @@ There are two things you can do about this warning: (rust-mode . eglot-ensure) (go-mode . eglot-ensure))) -(use-package ob-rust) + (use-package go-mode :init (add-hook 'before-save-hook #'gofmt-before-save)) (use-package ob-go) +(use-package ob-http) +(use-package ob-rust) +(use-package ob-translate) +(use-package ob-typescript) (use-package web-mode :mode "\\.html?\\'" @@ -173,7 +177,9 @@ There are two things you can do about this warning: (C . t) (dot . t) (go . t) - (rust . t))))) + (rust . t) + (http . t) + (typescript . t))))) (use-package helpful :bind (("C-h f" . #'helpful-callable)