[emacs] Speed up startup

This commit is contained in:
Correl Roush 2022-04-13 18:51:34 -04:00
parent ba4c3befd0
commit 19cfdb4412

View file

@ -1263,6 +1263,7 @@ Prefer sending HTML-formatted messages with plain text as a fallback option
#+begin_src emacs-lisp
(use-package! org-msg
:after mu4e
:config
(setq org-msg-default-alternatives '(text html)
org-msg-options "html-postamble:nil toc:nil author:nil email:nil ^:nil"))
@ -1372,6 +1373,7 @@ Manage a Kubernetes cluster and set up remote shell/file access via TRAMP.
(set-popup-rule! "^\\*kubernetes" :ignore t)
(use-package! kubernetes-tramp
:commands (eshell find-file)
:config
(setq tramp-remote-shell-executable "sh"))
#+end_src
@ -1413,6 +1415,7 @@ Pre-load Projectile with projects in my usual code directories.
Add some commands for interacting with Jira within org documents.
#+begin_src emacs-lisp
(after! org
(use-package jira-api
:config (setq jira-api-host "jira.aweber.io"
jira-api-user "correlr"))
@ -1484,7 +1487,7 @@ Add some commands for interacting with Jira within org documents.
"C-c j l" #'my/org-jira-add-worklog-latest
"C-c j b" #'my/org-jira-browse
"C-c j c" #'jira-api-create-issue-from-heading
"C-c j u" #'jira-api-update-issue-from-heading)
"C-c j u" #'jira-api-update-issue-from-heading))
#+end_src
** Source Control
#+begin_src emacs-lisp