summaryrefslogtreecommitdiffstats
path: root/emacs.d/10-settings.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-04-12 12:59:51 +0200
committerGravatar Tom Willemsen2011-04-12 12:59:51 +0200
commit68d0bd4ccd27c1524e4f49b3972b0dab511248cd (patch)
tree1122bd995a7ef7cbbe448f6af822fe781fe23ad0 /emacs.d/10-settings.el
parentda3357de4c0cf49657fc6374213e934d3ca1b1bb (diff)
downloaddotfiles-68d0bd4ccd27c1524e4f49b3972b0dab511248cd.tar.gz
dotfiles-68d0bd4ccd27c1524e4f49b3972b0dab511248cd.zip
Changed emacs font and auto-maximized window
Diffstat (limited to 'emacs.d/10-settings.el')
-rw-r--r--emacs.d/10-settings.el16
1 files changed, 4 insertions, 12 deletions
diff --git a/emacs.d/10-settings.el b/emacs.d/10-settings.el
index 86f8993..3de828e 100644
--- a/emacs.d/10-settings.el
+++ b/emacs.d/10-settings.el
@@ -1,5 +1,4 @@
-(if (eq system-type 'gnu/linux) ; if we're running linux
- (set-frame-font "-*-tamsyn-medium-*-*-*-15-*-*-*-*-80-*-*"))
+(add-to-list 'default-frame-alist '(font . "DejaVu Sans Mono-9"))
(setq inhibit-startup-message t) ; don't show welcome screen
(setq require-final-newline t) ; always append a newline to a
@@ -35,13 +34,6 @@
(let ((suffix (file-name-extension fname)))
(if (string-equal suffix "el")
(byte-compile-file fname))))))
-
-
-
-
-
-
-
-
-
-
+(add-hook 'emacs-startup-hook
+ (lambda ()
+ (fullscreen)))