add vterm

This commit is contained in:
2022-01-06 23:47:26 +01:00
parent 73e8aa6fb7
commit f852fcb854
20 changed files with 5917 additions and 2 deletions

View File

@@ -707,6 +707,8 @@ Version 2016-07-13"
:style toggle :selected rainbow-mode :help "rainbow-mode"]
["Scroll-All" scroll-all-mode
:style toggle :selected scroll-all-mode :help "scroll-all-mode"]
["Semantic" semantic-mode
:style toggle :selected semantic-mode :help "semantic-mode"]
["Sphinx Doc [Ⓢ]" sphinx-doc-mode
:style toggle :selected sphinx-doc-mode :help "sphinx-doc-mode"]
["YASnippet [Ⓨ]" yas-minor-mode

View File

@@ -261,10 +261,10 @@ Example defines
(setq org-pretty-entities-include-sub-superscripts t) ;; if `org-pretty-entities' is active include also sub-superscripts.
(setq org-image-actual-width '(600)) ;; image width displayed in org
(setq org-startup-with-latex-preview t) ;; #+STARTUP: latexpreview|nolatexpreview
(setq org-format-latex-options
(setq org-format-latex-options ;; `org-preview-latex-process-alist' `org-preview-latex-default-process' scale better with this variable
'(:foreground default
:background default
:scale 1.75
:scale 1.75 ;; scale inside org
:html-foreground "Black"
:html-background "Transparent"
:html-scale 1.0

View File

@@ -19,5 +19,9 @@
:init
(setq eshell-directory-name (concat user-cache-directory "eshell/")))
(use-package vterm
:load-path (lambda () (list (concat config-dir "lisp/vterm")))
:commands (vterm))
(provide 'shell-settings)
;;; shell-settings.el ends here