Skip to content

Instantly share code, notes, and snippets.

@yrns
Created June 1, 2015 03:21
Show Gist options
  • Save yrns/c1c155cece038ecb3c11 to your computer and use it in GitHub Desktop.
Save yrns/c1c155cece038ecb3c11 to your computer and use it in GitHub Desktop.
stripped .emacs
(dolist (mode '(menu-bar-mode tool-bar-mode scroll-bar-mode))
(when (fboundp mode) (funcall mode -1)))
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(prefer-coding-system 'utf-8)
(load-library "iso-transl")
(defalias 'yes-or-no-p 'y-or-n-p)
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(inhibit-startup-screen t)
'(make-backup-files nil))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment