From a182796600118cc2f16ceaabe3851640df99baf3 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 15 Jan 2015 01:46:40 -0500 Subject: [PATCH] Add failsafe font + smalltalk support --- init.el | 8 +++++--- init/init-smalltalk.el | 4 ++++ 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 init/init-smalltalk.el diff --git a/init.el b/init.el index a8621a5c4..f25cfba89 100644 --- a/init.el +++ b/init.el @@ -30,8 +30,9 @@ (defconst *dark-theme 'brin) (defconst *light-theme 'github) ; wtb better light theme... -(defconst *default-font "Ubuntu Mono") -(defconst *default-font-size (if (eq system-name "ganymede.local") 12 14)) +(defconst *default-font "Terminus (TTF)") +(defconst *default-font-size (if (eq system-name "ganymede.local") 9 12)) +(defconst *alt-font "Terminus") (defconst *presentation-font "Panic Sans") (defconst *presentation-font-size 22) @@ -70,7 +71,7 @@ init-java ; the poster child for carpal tunnel syndome init-js ; alert("not java, javascript!") init-lua ; zero-based indices? Zero-based indices. - ;; init-org ; for fearless leader (who is organized) + ;; init-org ; for fearless leader (who is organized) init-php ; making php less painful to work with init-project ; project tools - dired, perspective, neotree init-projectile ; when you forget where you put your house @@ -78,6 +79,7 @@ init-regex ; /^[^\s](meaning)[^\n]*/ init-ruby ; <3 init-scss ; @include magic; + init-smalltalk ; init-sh ; #!/bin/bash_your_head_in init-swift ; yay, emoji variables! init-text ; I got nothing... diff --git a/init/init-smalltalk.el b/init/init-smalltalk.el new file mode 100644 index 000000000..f1da79505 --- /dev/null +++ b/init/init-smalltalk.el @@ -0,0 +1,4 @@ +(use-package smalltalk-mode :mode "\\.g?st$") + +(provide 'init-smalltalk) +;;; init-smalltalk.el ends here