about summary refs log tree commit diff stats
path: root/systems
diff options
context:
space:
mode:
authorCase Duckworth2022-01-21 16:40:25 -0600
committerCase Duckworth2022-01-21 16:40:25 -0600
commit2b99cc25d369f6192b78863fec450e55b9d15d4a (patch)
tree48316c06736945a772b457d4008ccbb41a3827a3 /systems
parentMerge branch 'main' of tildegit.org:acdw/emacs (diff)
downloademacs-2b99cc25d369f6192b78863fec450e55b9d15d4a.tar.gz
emacs-2b99cc25d369f6192b78863fec450e55b9d15d4a.zip
Change system to machine
Diffstat (limited to 'systems')
-rw-r--r--systems/bob.el10
-rw-r--r--systems/gnu-linux.el5
-rw-r--r--systems/windows-nt.el23
3 files changed, 0 insertions, 38 deletions
diff --git a/systems/bob.el b/systems/bob.el deleted file mode 100644 index 427f38a..0000000 --- a/systems/bob.el +++ /dev/null
@@ -1,10 +0,0 @@
1;;; bob.el --- Customizations for "bob" -*- lexical-binding: t; -*-
2
3;;; Commentary:
4
5;;; Code:
6
7(setq system-default-font "DejaVu Sans Mono"
8 system-default-height 105)
9
10;;; bob.el ends here
diff --git a/systems/gnu-linux.el b/systems/gnu-linux.el deleted file mode 100644 index 333f15a..0000000 --- a/systems/gnu-linux.el +++ /dev/null
@@ -1,5 +0,0 @@
1;;; linux.el -*- lexical-binding: t; -*-
2
3(setq system-default-height 105)
4
5;;; linux.el ends here
diff --git a/systems/windows-nt.el b/systems/windows-nt.el deleted file mode 100644 index 3a0deee..0000000 --- a/systems/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 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