c73350af347224701ac88d0ba69c6f1a53cf6be3
commit c73350af347224701ac88d0ba69c6f1a53cf6be3
Author: Simon Watson <spw01@protonmail.com>
Date: Sun Jul 11 21:08:44 2021 -0400

Update windows with .emacs-all

diff --git a/emacs/.emacs-all b/emacs/.emacs-all
index 889ebbf..438241f 100644
--- a/emacs/.emacs-all
+++ b/emacs/.emacs-all
@@ -154,9 +154,10 @@
;; Load for Windows10
(if (eq system-type 'windows-nt)
(progn
+ (load "C:/Users/watsonsi/Documents/GitHub/dotfiles/emacs/windows-load/customs.el")
(setq visible-bell 1)
- (add-to-list 'default-frame-alist '(font . "Lucida Console" ))
- (set-face-attribute 'default t :font "Lucida Console" )))
+ (load-theme 'nano t)
+ (nano-dark)))


;; Load for Linux
diff --git a/emacs/windows-load/customs.el b/emacs/windows-load/customs.el
new file mode 100644
index 0000000..a4caf05
--- /dev/null
+++ b/emacs/windows-load/customs.el
@@ -0,0 +1,14 @@
+(custom-set-variables
+ ;; custom-set-variables was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ '(frame-background-mode 'dark)
+ '(org-agenda-files
+ '("c:/Users/watsonsi/OneDrive - IPC Systems, Inc/watsonsi-notes.org")))
+(custom-set-faces
+ ;; custom-set-faces was added by Custom.
+ ;; If you edit it by hand, you could mess it up, so be careful.
+ ;; Your init file should contain only one such instance.
+ ;; If there is more than one, they won't work right.
+ '(default ((t (:family "Lucida Console" :foundry "outline" :slant normal :weight normal :height 90 :width normal)))))