Add new configs

Updated existing configs to actually provide the correct symbols
This commit is contained in:
Emma Turner
2026-05-23 00:01:15 -06:00
parent 373111e0e8
commit e8c5158000
6 changed files with 36 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
* Prerequisites * 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) - Git (Required on windows so Emacs can use the included Linux tools)
- hunspell - hunspell
- ~en_US.aff~ and ~en_US.dic~ files from [[https://cgit.freedesktop.org/libreoffice/dictionaries/tree/en][LibreOffice Dictionaries]] (required for hunspell) - ~en_US.aff~ and ~en_US.dic~ files from [[https://cgit.freedesktop.org/libreoffice/dictionaries/tree/en][LibreOffice Dictionaries]] (required for hunspell)

View File

@@ -46,8 +46,7 @@
(setq display-line-numbers-type 'relative) (setq display-line-numbers-type 'relative)
(require (intern (system-name))) (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 ;; 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. ;; `after!' block, otherwise Doom's defaults may override your settings. E.g.

View File

@@ -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 ;; Must be set before org loads
(setopt (setopt
org-directory org-directory
"C:/Users/EmmaTurner/OneDrive - Exponential Technology Group, Inc/Documents/Notes/") "C:/Users/EmmaTurner/OneDrive - Exponential Technology Group, Inc/Documents/Notes/")
(provide (intern (system-name)))
;; For elisp-autofmt ;; For elisp-autofmt
;; Local variables: ;; Local variables:
;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core") ;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core")
;; end: ;; end:
(provide 'DESKTOP-TPC8GRE)
;;; DESKTOP-TPC8GRE.el ends here

10
lisp/gnu-linux.el Normal file
View File

@@ -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

13
lisp/pidgey.el Normal file
View File

@@ -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

View File

@@ -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 ;; Windows path
(when (eq system-type 'windows-nt) (when (eq system-type 'windows-nt)
@@ -19,9 +20,9 @@
(append exec-path (split-string (getenv "PATH") path-separator t))))) (append exec-path (split-string (getenv "PATH") path-separator t)))))
(setenv "PATH" (mapconcat 'identity (delete-dups path) path-separator)))) (setenv "PATH" (mapconcat 'identity (delete-dups path) path-separator))))
(provide (intern (format "%s" system-type)))
;; For elisp-autofmt ;; For elisp-autofmt
;; Local variables: ;; Local variables:
;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core") ;; elisp-autofmt-load-packages-local: ("use-package" "use-package-core")
;; end: ;; end:
(provide 'windows-nt)
;;; windows-nt.el ends here