diff options
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) |