Files
emacs-personal/modules/init-vscode-theme.el
Astounds 68a109b99f
Some checks failed
git-sync-with-mirror / git-sync (push) Has been cancelled
git-sync-with-mirror / test (push) Has been cancelled
testing
2026-02-28 00:37:10 -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