summary refs log tree commit diff
path: root/emacs.d
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-02-12 15:34:09 -0800
committerFranck Cuny <franckcuny@gmail.com>2016-02-12 15:34:09 -0800
commita946d68f3917c6d9f7bd702c4b325ef4342930e7 (patch)
tree10eb00820c4634e5b37de0d3e7445d2bde068f29 /emacs.d
parent[emacs] replacing 'helm' with 'ivy'. (diff)
downloademacs.d-a946d68f3917c6d9f7bd702c4b325ef4342930e7.tar.gz
[emacs] rename the *emacs.el* file to *default.el*
This file contains a bunch of defaults, so the new name makes more
sense.
Diffstat (limited to '')
-rw-r--r--emacs.d/inits/00_defaults.el (renamed from emacs.d/inits/00_emacs.el)14
1 files changed, 4 insertions, 10 deletions
diff --git a/emacs.d/inits/00_emacs.el b/emacs.d/inits/00_defaults.el
index 511076b..26ec0bb 100644
--- a/emacs.d/inits/00_emacs.el
+++ b/emacs.d/inits/00_defaults.el
@@ -17,15 +17,9 @@
 ;; follow symlinks
 (setq vc-follow-symlinks t)
 
-(setq tab-always-indent 'complete)
+;; navigation
+(setq next-screen-context-lines 5)
 
-(use-package exec-path-from-shell
-  :ensure t
-  :config
-  (exec-path-from-shell-initialize)
-  (exec-path-from-shell-copy-envs '("TMPDIR" "GOPATH")))
+(setq tab-always-indent 'complete)
 
-(use-package server
-  :config
-  (unless (server-running-p)
-    (server-start)))
+(global-auto-revert-mode 1)