Files
emacs-personal/modules/init-vscode-theme.el
Astounds 47333c1f4f
All checks were successful
git-sync-with-mirror / test (push) Successful in 3m5s
git-sync-with-mirror / git-sync (push) Successful in 14s
perf: optimize startup time and fix theme colors
Performance improvements (2.4s → 0.97s, 60% faster):
- Enable use-package-always-defer for lazy loading
- Add native compilation support (Emacs 28+)
- Defer company, ivy, projectile with :defer
- Move settings from :config to :init where possible
- Remove redundant package-refresh-contents
2026-02-28 00:39:33 -05:00

17 lines
288 B
EmacsLisp

;;; init-vscode-theme.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
(use-package vscode-dark-plus-theme
:ensure t
:demand t
:config
(load-theme 'vscode-dark-plus t))
(provide 'init-vscode-theme)
;; End:
;;; init-vscode-theme.el ends here