diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2014-03-20 04:40:21 (GMT) |
|---|---|---|
| committer | Ravikiran Rajagopal <aine.marina@gmail.com> | 2014-03-20 04:40:21 (GMT) |
| commit | 888698ff0db3e1070871ae0e5423954b0d946ebc (patch) | |
| tree | 6ba615521dab8f79b02054301fb4ca41ca0cd8ea | |
| parent | e9fbf031de47041ba9b720e5a45aea463f8afceb (diff) | |
| download | dotemacs-888698ff0db3e1070871ae0e5423954b0d946ebc.zip dotemacs-888698ff0db3e1070871ae0e5423954b0d946ebc.tar.gz dotemacs-888698ff0db3e1070871ae0e5423954b0d946ebc.tar.bz2 | |
Attempt at minimizing flicker
| -rw-r--r-- | init.el | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -7,6 +7,10 @@ ) ;; Initialize some customizations early on to avoid flicker +(when window-system + (tooltip-mode -1) + (tool-bar-mode -1)) +(menu-bar-mode -1) (setq warning-suppress-types nil) (set-face-background 'default "black") (set-face-foreground 'default "white") @@ -17,10 +21,6 @@ (find-if (lambda (f) (find-font (font-spec :name f))) fonts)) (let ((fontval (font-candidate '"Inconsolata" "Source Code Pro" "Anonymous Pro"))) (when fontval (set-face-attribute 'default nil :font fontval))) -(when window-system - (tooltip-mode -1) - (tool-bar-mode -1)) -(menu-bar-mode -1) (setq custom-file (concat ravi/init-dir "custom.el")) ;; Initialize package handling: currently using only the official repository and MELPA |
