diff --git a/README.org b/README.org index 6d983a3..870630e 100644 --- a/README.org +++ b/README.org @@ -1,5 +1,7 @@ * Prerequisites +- JetBrainsMono Nerd Font (from [[https://www.nerdfonts.com/font-downloads][NerdFonts]]) + - Install the JetBrainsMonoNL and JetBrainsMonoNL Mono fonts from the available ttf files - Git (Required on windows so Emacs can use the included Linux tools) - hunspell - ~en_US.aff~ and ~en_US.dic~ files from [[https://cgit.freedesktop.org/libreoffice/dictionaries/tree/en][LibreOffice Dictionaries]] (required for hunspell) diff --git a/config.el b/config.el index a688aa1..0ff9b1f 100644 --- a/config.el +++ b/config.el @@ -46,8 +46,7 @@ (setq display-line-numbers-type 'relative) (require (intern (system-name))) -(require (intern (format "%s" system-type))) - +(require (intern (string-replace "/" "-" (format "%s" system-type)))) ;; Whenever you reconfigure a package, make sure to wrap your config in an ;; `after!' block, otherwise Doom's defaults may override your settings. E.g. diff --git a/lisp/DESKTOP-TPC8GRE.el b/lisp/DESKTOP-TPC8GRE.el index 5a73d4d..c0e3429 100644 --- a/lisp/DESKTOP-TPC8GRE.el +++ b/lisp/DESKTOP-TPC8GRE.el @@ -1,13 +1,16 @@ -;;; $DOOMDIR/lsip/DESKTOP-TPC8GRE.el -*- lexical-binding: t; -*- +;;; $DOOMDIR/lisp/DESKTOP-TPC8GRE.el --- Host specific configuration -*- lexical-binding: t; -*- +;;; Commentary: +;;; Code: ;; Must be set before org loads (setopt org-directory "C:/Users/EmmaTurner/OneDrive - Exponential Technology Group, Inc/Documents/Notes/") -(provide (intern (system-name))) ;; For elisp-autofmt ;; Local variables: ;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core") ;; end: +(provide 'DESKTOP-TPC8GRE) +;;; DESKTOP-TPC8GRE.el ends here diff --git a/lisp/gnu-linux.el b/lisp/gnu-linux.el new file mode 100644 index 0000000..7b77c7d --- /dev/null +++ b/lisp/gnu-linux.el @@ -0,0 +1,10 @@ +;;; $DOOMDIR/lisp/gnu-linux.el --- GNU/Linux specific configuration -*- lexical-binding: t; -*- +;;; Commentary: +;;; Code: + +;; For elisp-autofmt +;; Local variables: +;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core") +;; end: +(provide 'gnu-linux) +;;; gnu-linux.el ends here diff --git a/lisp/pidgey.el b/lisp/pidgey.el new file mode 100644 index 0000000..dffc975 --- /dev/null +++ b/lisp/pidgey.el @@ -0,0 +1,13 @@ +;;; $DOOMDIR/lisp/pidgey.el --- Host specific configuration -*- lexical-binding: t; -*- +;;; Commentary: + +;;; Code: +(setopt org-directory "~/org/") + + +;; For elisp-autofmt +;; Local variables: +;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core") +;; end: +(provide 'pidgey) +;;; pidgey.el ends here diff --git a/lisp/windows-nt.el b/lisp/windows-nt.el index a9798c3..6605e4f 100644 --- a/lisp/windows-nt.el +++ b/lisp/windows-nt.el @@ -1,5 +1,6 @@ -;;; $DOOMDIR/lisp/windows-nt.el -*- lexical-binding: t; -*- - +;;; $DOOMDIR/lisp/windows-nt.el --- Windows specific configuration -*- lexical-binding: t; -*- +;;; Commentary: +;;; Code: ;; Windows path (when (eq system-type 'windows-nt) @@ -19,9 +20,9 @@ (append exec-path (split-string (getenv "PATH") path-separator t))))) (setenv "PATH" (mapconcat 'identity (delete-dups path) path-separator)))) -(provide (intern (format "%s" system-type))) - ;; For elisp-autofmt ;; Local variables: ;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core") ;; end: +(provide 'windows-nt) +;;; windows-nt.el ends here