richleland / emacs

fork of emacs

.emacs.d config files

Clone this repository (size: 245.8 KB): HTTPS / SSH
$ hg clone http://code.richleland.com/emacs

Changed (Δ109 bytes):

raw changeset »

init.el (5 lines added, 0 lines removed)

Up to file-list init.el:

15
15
  (let (parens-require-spaces)
16
16
    (insert-pair)))
17
17
18
;; Set tabs to be 4 spaces
19
(setq indent-tabs-mode nil)
20
(setq tab-width 4)
21
(setq-default py-indent-offset 4)
22
18
23
;; Put backup files somewhere less annoying
19
24
(setq backup-directory-alist '(("." . "~/.emacs.d/backups")))
20
25