diff options
author | Thanos Apollo <[email protected]> | 2023-02-25 14:05:31 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-02-25 14:05:31 +0200 |
commit | f4fcf47f53062e7d279cb1bc9fc102fb05bc596e (patch) | |
tree | 34690e62c30f061cd8ff38198e0942e2ecd89dab /emacs.org | |
parent | b89fea8e7f285b12c90117b63a278eaf66061f1b (diff) |
emacs: Update (system-name) variables
Diffstat (limited to 'emacs.org')
-rw-r--r-- | emacs.org | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -406,9 +406,9 @@ Hook with ~dired-mode~ ;; ~/.guix-profile. Otherwise we use /bin/zsh. (if (or (string= (system-name) "hephaestus") - (string= (system-name) "heisenberg")) + (string= (system-name) "zeus")) (setq vterm-shell "~/.guix-profile/bin/bash") - (setq vterm-shell "/bin/zsh"))) + (setq vterm-shell "/bin/bash"))) #+end_src ** Eshell #+begin_src emacs-lisp @@ -883,7 +883,7 @@ Hook with ~dired-mode~ '((emacs-lisp . t) (python . t))) - (add-to-list 'org-structure-template-alist '("sh" . "src shell")) + (add-to-list 'org-structure-template-alist '("ex" . "SRC EXAMPLE")) (add-to-list 'org-structure-template-alist '("b" . "src bash")) (add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp")) (add-to-list 'org-structure-template-alist '("py" . "src python")) |