summary refs log tree commit diff
path: root/emacs.d/core/core-default.el
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-07-03 13:25:44 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-07-03 13:25:44 -0700
commit1346ffa38cd554571171a1b4fb20b3ad7faf2c3d (patch)
tree6ef7fba9fdb1aeca973747153d8a2528167d3fe6 /emacs.d/core/core-default.el
parent[bash] clean up a little bit the configuration (diff)
downloademacs.d-1346ffa38cd554571171a1b4fb20b3ad7faf2c3d.tar.gz
[emacs] move everything back to one file for now.
Diffstat (limited to 'emacs.d/core/core-default.el')
-rw-r--r--emacs.d/core/core-default.el20
1 files changed, 0 insertions, 20 deletions
diff --git a/emacs.d/core/core-default.el b/emacs.d/core/core-default.el
deleted file mode 100644
index 7756257..0000000
--- a/emacs.d/core/core-default.el
+++ /dev/null
@@ -1,20 +0,0 @@
-;; alias yes-or-no to y-or-n
-(fset 'yes-or-no-p 'y-or-n-p)
-
-;; set utf-8 as the default encoding
-(prefer-coding-system 'utf-8-unix)
-
-(global-auto-revert-mode 1)
-
-(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)
-
-(setq-default indent-tabs-mode nil)
-
-(provide 'core-default)