mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-11 19:45:25 +03:00
15 lines
388 B
Text
15 lines
388 B
Text
# -*- mode: snippet -*-
|
|
# name: org-python-template
|
|
# key: orgpy
|
|
# --
|
|
#+PROPERTY: header-args:python :session $1
|
|
#+PROPERTY: header-args:python+ :exports both
|
|
#+PROPERTY: header-args:python+ :tangle yes
|
|
#+PROPERTY: header-args:python+ :async yes
|
|
#+PROPERTY: header-args:python+ :eval never-export
|
|
|
|
#+begin_src elisp :exports none
|
|
(setq-local org-image-actual-width '(1024))
|
|
#+end_src
|
|
|
|
$0
|