summary refs log tree commit diff stats
path: root/systems/windows-nt.el
diff options
context:
space:
mode:
authorCase Duckworth2022-01-17 13:45:32 -0600
committerCase Duckworth2022-01-17 13:45:32 -0600
commit1394b10658f5059aeb5fa45a2985f4cac97f833d (patch)
tree9a448cbcd0e6d94d337893f764f28fe1f833e77d /systems/windows-nt.el
parentAdd sort-setq (diff)
downloademacs-1394b10658f5059aeb5fa45a2985f4cac97f833d.tar.gz
emacs-1394b10658f5059aeb5fa45a2985f4cac97f833d.zip
So! Many! Changes!!
Diffstat (limited to 'systems/windows-nt.el')
-rw-r--r--systems/windows-nt.el23
1 files changed, 23 insertions, 0 deletions
diff --git a/systems/windows-nt.el b/systems/windows-nt.el new file mode 100644 index 0000000..3a0deee --- /dev/null +++ b/systems/windows-nt.el
@@ -0,0 +1,23 @@
1;;; windows.el --- Windows settings! -*- lexical-binding: t; -*-
2
3;; Annoying gnu-tls bug; I "always" trust the certificate anyway, so let's be
4;; insecure.
5(setq network-security-level 'low
6 debug-on-error t)
7
8;; Fonts
9
10(setq system-default-font "Cascadia Mono"
11 system-default-height 90
12 system-variable-pitch-font "Carlito"
13 system-variable-pitch-height 1.2)
14
15;; Add C:\Program Files\* and C:\Program Files (x86)\* to exec-path
16(dolist (path (append (file-expand-wildcards "C:/Program Files/*")
17 (file-expand-wildcards "c:/Program Files (x86)/*")
18 ;; Others...
19 (save-match-data
20 (split-string (getenv "PATH") ";" t))))
21 (add-to-list 'exec-path path :append))
22
23;;; windows.el ends here