forked from colonelpanic/dotfiles
13 lines
341 B
EmacsLisp
13 lines
341 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 120 :weight normal :slant normal :foundry "nil" :family "Source Code Pro" :background nil)))))
|
||
|
|
||
|
(provide-theme 'source-code-pro)
|