17 lines
288 B
EmacsLisp
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
|