#My emacs init file
Last active
August 29, 2015 13:56
-
-
Save Y4suyuki/8885571 to your computer and use it in GitHub Desktop.
My emacs init file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*~ | |
\#* | |
elpa/* | |
games/* | |
auto-save-list/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*-Emacs-Lisp-*- | |
;; .emacs.d/init.el | |
;; change TAB to 4 spaces | |
;; http://www.gnu.org/software/emacs/manual/html_node/elisp/Mode_002dSpecific-Indent.html#Mode_002dSpecific-Indent | |
(setq-default indent-tabs-mode nil) | |
(setq-default tab-width 4) | |
(setq indent-line-function 'insert-tab) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment