This commit is contained in:
Henrik Lissner 2015-01-15 01:49:50 -05:00
parent e91258ceff
commit 7fd8c80b2c
2 changed files with 6 additions and 1 deletions

View file

@ -7,6 +7,8 @@
;; Don't open files from the workspace in a new frame ;; Don't open files from the workspace in a new frame
(setq ns-pop-up-frames nil) (setq ns-pop-up-frames nil)
(setq ns-antialias-text nil)
;; fix emacs PATH on OSX (GUI only) ;; fix emacs PATH on OSX (GUI only)
(use-package exec-path-from-shell (use-package exec-path-from-shell
:if (memq window-system '(mac ns)) :if (memq window-system '(mac ns))

View file

@ -6,6 +6,9 @@
;; No transparency! ;; No transparency!
(set-frame-parameter nil 'alpha 96) (set-frame-parameter nil 'alpha 96)
(unless (member *default-font (font-family-list))
(defconst *default-font *alt-font))
(unless (member *default-font (font-family-list)) (unless (member *default-font (font-family-list))
(error "Font %s isn't installed" *default-font)) (error "Font %s isn't installed" *default-font))
@ -81,7 +84,7 @@
(progn (progn
(setq sml/no-confirm-load-theme t (setq sml/no-confirm-load-theme t
sml/mode-width 'full sml/mode-width 'full
sml/extra-filler (if window-system 1 0) sml/extra-filler (if window-system -1 0)
sml/show-remote nil sml/show-remote nil
sml/modified-char "*" sml/modified-char "*"
sml/encoding-format nil) sml/encoding-format nil)