Start adding ob-tmux to doom config.

This commit is contained in:
2023-09-05 07:28:45 +12:00
parent 9fde83fc09
commit d221812cf7
3 changed files with 20 additions and 1 deletions

View File

@ -102,3 +102,16 @@
(global-set-key (kbd "<mouse-4>") 'scroll-down-5-lines) (global-set-key (kbd "<mouse-4>") 'scroll-down-5-lines)
(global-set-key (kbd "<mouse-5>") 'scroll-up-5-lines) (global-set-key (kbd "<mouse-5>") 'scroll-up-5-lines)
(setq org-babel-default-header-args:shell
'((:results . "output code verbatim replace")
(:wrap . "example")))
(require 'ob-async)
(use-package! ob-tmux
:ensure t
:custom
(org-babel-default-header-args:tmux
(:session . "default")
(:socket . nil)))
(org-babel-tmux-terminal "iterm")

View File

@ -104,7 +104,7 @@
;;rgb ; creating color strings ;;rgb ; creating color strings
;;taskrunner ; taskrunner for all your projects ;;taskrunner ; taskrunner for all your projects
;;terraform ; infrastructure as code ;;terraform ; infrastructure as code
;;tmux ; an API for interacting with tmux tmux ; an API for interacting with tmux
;;tree-sitter ; syntax and parsing, sitting in a tree... ;;tree-sitter ; syntax and parsing, sitting in a tree...
;;upload ; map local to remote projects via ssh/ftp ;;upload ; map local to remote projects via ssh/ftp

View File

@ -48,3 +48,9 @@
;(unpin! pinned-package another-pinned-package) ;(unpin! pinned-package another-pinned-package)
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things) ;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
;(unpin! t) ;(unpin! t)
(package! ob-tmux)
(package! ob-async)
(package! kubernetes)
(package! kubernetes-evil)
(package! graphviz-dot-mode)