testing
Some checks failed
git-sync-with-mirror / git-sync (push) Has been cancelled
git-sync-with-mirror / test (push) Has been cancelled

This commit is contained in:
2026-02-28 00:26:41 -05:00
parent 1aedc8d100
commit 72efd0122a
8 changed files with 78 additions and 62 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)
@@ -38,11 +38,15 @@
;; Set the face for the current line number
(set-face-attribute 'line-number-current-line nil
:background "#007ACC"
:foreground "#FFFFFF")
)
:foreground "#FFFFFF"))
;; Invoke color
(current-dark-color))
;; Apply colors after theme is loaded
(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)