testing
All checks were successful
git-sync-with-mirror / test (push) Successful in 3m14s
git-sync-with-mirror / git-sync (push) Successful in 13s

This commit is contained in:
2026-02-28 00:22:51 -05:00
parent 1aedc8d100
commit 6bb45b5089
8 changed files with 77 additions and 60 deletions

View File

@@ -5,8 +5,8 @@
;;; Code:
(use-package vscode-dark-plus-theme
:pin "MELPA"
:ensure t
:demand t
:config
(load-theme 'vscode-dark-plus t)
@@ -41,8 +41,13 @@
:foreground "#FFFFFF")
)
;; Invoke color
(current-dark-color))
;; Apply colors after frame is created
(if (display-graphic-p)
(current-dark-color)
(add-hook 'after-make-frame-functions
(lambda (frame)
(select-frame frame)
(current-dark-color)))))
(provide 'init-vscode-theme)