Browse Source

Merge pull request #549 from toctan/require-eof

Newline at end of file
custom
Bozhidar Batsov 12 years ago
parent
commit
af4137fe0c
  1. 1
      .gitignore
  2. 3
      core/prelude-editor.el

1
.gitignore

@ -20,3 +20,4 @@ projectile-bookmarks.eld
session* session*
.cask .cask
tramp tramp
/var/pcache

3
core/prelude-editor.el

@ -45,6 +45,9 @@
(setq-default indent-tabs-mode nil) ;; don't use tabs to indent (setq-default indent-tabs-mode nil) ;; don't use tabs to indent
(setq-default tab-width 8) ;; but maintain correct appearance (setq-default tab-width 8) ;; but maintain correct appearance
;; Newline at end of file
(setq require-final-newline t)
;; delete the selection with a keypress ;; delete the selection with a keypress
(delete-selection-mode t) (delete-selection-mode t)

Loading…
Cancel
Save