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