From 5f2b301a8df5410962519d2b7e9a977b03e75977 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 12 Feb 2016 20:58:37 -0800 Subject: [emacs] Split the config into 'core' and 'modes'. Separate the modules that are 'core' (e.g.: related to editing, manipulating text, and so on) and the 'modes' (e.g.: related to syntax, langage support, etc). --- emacs.d/inits/00_defaults.el | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 emacs.d/inits/00_defaults.el (limited to 'emacs.d/inits/00_defaults.el') diff --git a/emacs.d/inits/00_defaults.el b/emacs.d/inits/00_defaults.el deleted file mode 100644 index 26ec0bb..0000000 --- a/emacs.d/inits/00_defaults.el +++ /dev/null @@ -1,25 +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) - -(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) -- cgit 1.4.1