diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-02-22 13:52:53 -0800 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-02-22 13:53:23 -0800 |
commit | 7cfa9075abab2e9cab27cf56194f066b259f6461 (patch) | |
tree | 717185016e089a0e3a77633f4fbe7b42d6e34545 /emacs.d/core/core-default.el | |
parent | [emacs] a few updates to org configuration (diff) | |
download | emacs.d-7cfa9075abab2e9cab27cf56194f066b259f6461.tar.gz |
[emacs] code cleanup
Diffstat (limited to '')
-rw-r--r-- | emacs.d/core/core-default.el | 28 |
1 files changed, 9 insertions, 19 deletions
diff --git a/emacs.d/core/core-default.el b/emacs.d/core/core-default.el index a3076eb..42c4120 100644 --- a/emacs.d/core/core-default.el +++ b/emacs.d/core/core-default.el @@ -4,26 +4,16 @@ ;; set utf-8 as the default encoding (prefer-coding-system 'utf-8-unix) -(setq auto-save-default nil) - -(setq auto-save-list-file-prefix nil) - -;; *no* backups -(setq make-backup-files nil) - -;; always add a newline -(setq require-final-newline t) - -;; follow symlinks -(setq vc-follow-symlinks t) - -;; navigation -(setq next-screen-context-lines 5) - -(setq tab-always-indent 'complete) - (global-auto-revert-mode 1) -(setq-default indent-tabs-mode nil) +(setq + auto-save-default nil + auto-save-list-file-prefix nil + make-backup-files nil + require-final-newline t + vc-follow-symlinks t + next-screen-context-lines 5 + tab-always-indent 'complete + indent-tabs-mode nil) (provide 'core-default) |