aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-vscode-theme.el
blob: 36ce1bee29d0d019e19bdbbba00937be67d11ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; 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