summary refs log tree commit diff stats
path: root/systems/windows-nt.el
blob: 3a0deeefec5adbb1b06f0ce0c1d27c0349faa447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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