From c84450ffcd561d3648eb0196a92d76fd0fab7639 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 16 Aug 2015 14:11:31 -0700 Subject: [PATCH] add source-code-pro-theme --- dotfiles/emacs.d/source-code-pro-theme.el | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 dotfiles/emacs.d/source-code-pro-theme.el 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)