diff options
Diffstat (limited to 'machines')
-rw-r--r-- | machines/bob.el | 10 | ||||
-rw-r--r-- | machines/gnu-linux.el | 5 | ||||
-rw-r--r-- | machines/windows-nt.el | 23 |
3 files changed, 38 insertions, 0 deletions
diff --git a/machines/bob.el b/machines/bob.el new file mode 100644 index 0000000..e9b444c --- /dev/null +++ b/machines/bob.el | |||
@@ -0,0 +1,10 @@ | |||
1 | ;;; bob.el --- Customizations for "bob" -*- lexical-binding: t; -*- | ||
2 | |||
3 | ;;; Commentary: | ||
4 | |||
5 | ;;; Code: | ||
6 | |||
7 | (setq machine-default-font "DejaVu Sans Mono" | ||
8 | machine-default-height 105) | ||
9 | |||
10 | ;;; bob.el ends here | ||
diff --git a/machines/gnu-linux.el b/machines/gnu-linux.el new file mode 100644 index 0000000..309ca34 --- /dev/null +++ b/machines/gnu-linux.el | |||
@@ -0,0 +1,5 @@ | |||
1 | ;;; linux.el -*- lexical-binding: t; -*- | ||
2 | |||
3 | (setq machine-default-height 105) | ||
4 | |||
5 | ;;; linux.el ends here | ||
diff --git a/machines/windows-nt.el b/machines/windows-nt.el new file mode 100644 index 0000000..a95754e --- /dev/null +++ b/machines/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 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 | ||