diff options
author | Alan Pearce | 2018-11-29 20:32:58 +0100 |
---|---|---|
committer | Alan Pearce | 2018-11-29 20:32:58 +0100 |
commit | 7df53b0e90eede96330518a72355a69b4c2f824a (patch) | |
tree | b5d0e9f98de53ae5a1ffe39181a14f37341c23e9 | |
parent | c3b82dddef8aad525a9bcb9c8d9d620e20e992c0 (diff) | |
download | nixfiles-7df53b0e90eede96330518a72355a69b4c2f824a.tar.lz nixfiles-7df53b0e90eede96330518a72355a69b4c2f824a.tar.zst nixfiles-7df53b0e90eede96330518a72355a69b4c2f824a.zip |
Emacs: fix ob-sh startup error
-rw-r--r-- | emacs/.emacs.d/main.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 42bab70f..f3e5b8fa 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1562,7 +1562,7 @@ With two prefix arguments, write out the day and month name." :config (progn (org-babel-do-load-languages 'org-babel-load-languages '((ledger . t) - (sh . t))) + (shell . t))) (setq org-src-tab-acts-natively t org-edit-src-content-indentation 0 org-src-preserve-indentation t))) |