From 1394b10658f5059aeb5fa45a2985f4cac97f833d Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Mon, 17 Jan 2022 13:45:32 -0600 Subject: So! Many! Changes!! --- systems/windows-nt.el | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 systems/windows-nt.el (limited to 'systems/windows-nt.el') 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 @@ +;;; windows.el --- Windows settings! -*- lexical-binding: t; -*- + +;; Annoying gnu-tls bug; I "always" trust the certificate anyway, so let's be +;; insecure. +(setq network-security-level 'low + debug-on-error t) + +;; Fonts + +(setq system-default-font "Cascadia Mono" + system-default-height 90 + system-variable-pitch-font "Carlito" + system-variable-pitch-height 1.2) + +;; Add C:\Program Files\* and C:\Program Files (x86)\* to exec-path +(dolist (path (append (file-expand-wildcards "C:/Program Files/*") + (file-expand-wildcards "c:/Program Files (x86)/*") + ;; Others... + (save-match-data + (split-string (getenv "PATH") ";" t)))) + (add-to-list 'exec-path path :append)) + +;;; windows.el ends here -- cgit 1.4.1-21-gabe81