aboutsummaryrefslogtreecommitdiff
path: root/home/.emacs.d/init.el
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-02-05 01:05:18 -0800
committerJakob Odersky <jakob@odersky.com>2017-02-05 01:05:21 -0800
commitdac983e5cc90fd9608ff9b6b5a71f97986d88ba8 (patch)
treeea98743bd50a8dd0a3b692899d30002edbb9a63e /home/.emacs.d/init.el
parent620f0c950af252dce8f3fcbc184892e055549cb3 (diff)
downloaddotfiles-dac983e5cc90fd9608ff9b6b5a71f97986d88ba8.tar.gz
dotfiles-dac983e5cc90fd9608ff9b6b5a71f97986d88ba8.tar.bz2
dotfiles-dac983e5cc90fd9608ff9b6b5a71f97986d88ba8.zip
Set initial buffer
Diffstat (limited to 'home/.emacs.d/init.el')
-rw-r--r--home/.emacs.d/init.el13
1 files changed, 8 insertions, 5 deletions
diff --git a/home/.emacs.d/init.el b/home/.emacs.d/init.el
index 47c3d68..8222bcf 100644
--- a/home/.emacs.d/init.el
+++ b/home/.emacs.d/init.el
@@ -17,12 +17,9 @@
(setq create-lockfiles nil)
(global-auto-revert-mode t)
-;; save customizations to separate file
-(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
-(load custom-file 'noerror)
-
;; font
-(set-face-attribute 'default nil :height 100); value is in 1/10pt, so 100 will give you 10pt, etc.
+; value is in 1/10pt, so 100 will give you 10pt, etc.
+(set-face-attribute 'default nil :height 100)
;; simplify questions
(defalias 'yes-or-no-p 'y-or-n-p)
@@ -40,6 +37,12 @@
;; Show directories first
(setq dired-listing-switches "-alh --group-directories-first")
+;; save customizations to separate file
+(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
+(load custom-file 'noerror)
+
+(setq initial-buffer-choice "~/readme.org")
+
;;; Enable use-package
(require 'package)