forked from colonelpanic/dotfiles
13 lines
344 B
EmacsLisp
13 lines
344 B
EmacsLisp
(deftheme source-code-pro
|
|
"Theme setting source-code-pro as the default face")
|
|
|
|
(custom-theme-set-variables
|
|
'source-code-pro
|
|
)
|
|
|
|
(custom-theme-set-faces
|
|
'source-code-pro
|
|
'(default ((t (:width normal :height 135 :weight semi-bold :slant normal :foundry "nil" :family "Source Code Pro" :background nil)))))
|
|
|
|
(provide-theme 'source-code-pro)
|