Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

7 lines
222 B

  1. ;;; cli.el -*- lexical-binding: t; -*-
  2. (setq org-confirm-babel-evaluate nil)
  3. (defun doom-shut-up-a (orig-fn &rest args)
  4. (quiet! (apply orig-fn args)))
  5. (advice-add 'org-babel-execute-src-block :around #'doom-shut-up-a)