Created
December 2, 2018 03:06
-
-
Save shouhei/911ce6ea0c5cd80f71fec1e08885c2e0 to your computer and use it in GitHub Desktop.
This file contains 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
(package-initialize) | |
(setq package-archives | |
'(("gnu" . "http://elpa.gnu.org/packages/") | |
("marmalade" . "http://marmalade-repo.org/packages/") | |
("melpa". "http://melpa.org/packages/"))) | |
(keyboard-translate ?\C-h ?\C-?) | |
(load-theme 'wheatgrass t) | |
(setq make-backup-files nil) | |
(setq auto-save-default nil) | |
(setq-default show-trailing-whitespace t) | |
(add-hook 'font-lock-mode-hook | |
(lambda() | |
(font-lock-add-keywords | |
nil | |
'(("\t" 0 'trailing-whitespace prepend))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment