[Emacs] Add package for shell pop-up, and org inline LaTeX
This commit is contained in:
parent
8d798ea8ad
commit
f1aa8f4dc2
@ -1274,6 +1274,16 @@ the usage of the ~:ignore:~ tag in org.
|
|||||||
(setq-default org-agenda-files (list "~/org/agenda" "~/org/notes.org"))
|
(setq-default org-agenda-files (list "~/org/agenda" "~/org/notes.org"))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
**** Babel
|
||||||
|
A package I use from time to time is ~ob-latex-as-png~ which allows me
|
||||||
|
to easily convert a LaTeX snippet into a PNG, regardless of the
|
||||||
|
exporter I use afterwards. Its installation is pretty simple:
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package ob-latex-as-png
|
||||||
|
:defer t
|
||||||
|
:straight (:build t))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
**** File export
|
**** File export
|
||||||
:PROPERTIES:
|
:PROPERTIES:
|
||||||
:header-args:emacs-lisp: :tangle no :exports code :results silent
|
:header-args:emacs-lisp: :tangle no :exports code :results silent
|
||||||
@ -2274,6 +2284,24 @@ Nginx syntax.
|
|||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** Shells
|
*** Shells
|
||||||
|
**** Shell-pop
|
||||||
|
Shell-pop allows the user to easily call for a new shell in a pop-up
|
||||||
|
buffer.
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package shell-pop
|
||||||
|
:defer t
|
||||||
|
:straight (:build t)
|
||||||
|
:custom
|
||||||
|
(shell-pop-default-directory "/home/phundrak")
|
||||||
|
(shell-pop-shell-type (quote ("eshell" "*eshell*" (lambda nil (eshell shell-pop-term-shell)))))
|
||||||
|
(shell-pop-window-size 30)
|
||||||
|
(shell-pop-full-span nil)
|
||||||
|
(shell-pop-window-position "bottom")
|
||||||
|
(shell-pop-autocd-to-working-dir t)
|
||||||
|
(shell-pop-restore-window-configuration t)
|
||||||
|
(shell-pop-cleanup-buffer-at-process-exit t))
|
||||||
|
#+end_src
|
||||||
|
|
||||||
**** VTerm
|
**** VTerm
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
(use-package vterm
|
(use-package vterm
|
||||||
|
Loading…
Reference in New Issue
Block a user