Emacs-log

;; init.el                                                                                                                                                                                                          

(custom-set-variables
 ;; uncomment to always end a file with a newline                                                                                                                                                                   
 ;'(require-final-newline t)                                                                                                                                                                                        
 ;; uncomment to disable loading of "default.el" at startup                                                                                                                                                         
 ;'(inhibit-default-init t)                                                                                                                                                                                         
 ;; default to unified diffs                                                                                                                                                                                        
 '(diff-switches "-u")
 ;; Map Alt key to Meta                                                                                                                                                                                             
 '(setq x-alt-keysym 'meta)
 '(global-set-key [(control ?h)] 'delete-backward-char))
;;; uncomment for CJK utf-8 support for non-Asian users                                                                                                                                                             
;; (require 'un-define)
原文地址:https://www.cnblogs.com/zhengjm/p/14593885.html