commit 522b90ad3e5e03710c3d1c88170563d8a0451316
parent 5f0afb031dbdc2847d5b757b91cff69185a6a7cd
Author: Lukas Henkel <lh@entf.net>
Date: Thu, 30 Sep 2021 12:37:38 +0200
Use sh.exe on Windows (which is busybox for me)
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/config.org b/config.org
@@ -59,6 +59,12 @@ Here we figure out some directories later used in this config in a (hopefully) s
(cond ((eq system-type 'gnu/linux) (or (getenv "XDG_DATA_HOME") "~/.local/share"))
((eq system-type 'windows-nt) (getenv "APPDATA")))))
#+end_src
+** Shell on windows
+Shell on windows is cmd.exe. Who needs that?
+#+begin_src emacs-lisp
+ (when (eq system-type 'windows-nt)
+ (setq shell-file-name "sh.exe"))
+#+end_src
* Basic settings
** Cursor
I prefer the bar cursor.