diff options
author | Case Duckworth | 2022-10-17 21:41:28 -0500 |
---|---|---|
committer | Case Duckworth | 2022-10-17 21:41:28 -0500 |
commit | aab5bfd074e57d06a79e39d7c7c4760e1f385a06 (patch) | |
tree | 7b111190a44458a970355f7a327cc5278c850293 /machines/windows-nt.el | |
parent | asoi (diff) | |
download | emacs-aab5bfd074e57d06a79e39d7c7c4760e1f385a06.tar.gz emacs-aab5bfd074e57d06a79e39d7c7c4760e1f385a06.zip |
Bankruptcy 9
Diffstat (limited to 'machines/windows-nt.el')
-rw-r--r-- | machines/windows-nt.el | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/machines/windows-nt.el b/machines/windows-nt.el deleted file mode 100644 index a95754e..0000000 --- a/machines/windows-nt.el +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
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 machine-default-font "Cascadia Mono" | ||
11 | machine-default-height 90 | ||
12 | machine-variable-pitch-font "Carlito" | ||
13 | machine-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 | ||