diff --git a/dotfiles/emacs.d/source-code-pro-theme.el b/dotfiles/emacs.d/source-code-pro-theme.el new file mode 100644 index 00000000..f11b8f62 --- /dev/null +++ b/dotfiles/emacs.d/source-code-pro-theme.el @@ -0,0 +1,12 @@ +(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)