Skip to content

Instantly share code, notes, and snippets.

@shouhei
Created December 2, 2018 03:06
Show Gist options
  • Save shouhei/911ce6ea0c5cd80f71fec1e08885c2e0 to your computer and use it in GitHub Desktop.
Save shouhei/911ce6ea0c5cd80f71fec1e08885c2e0 to your computer and use it in GitHub Desktop.
(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