emacs初期設定 (ルート)

.emacs ファイルの中身です。
Customizeコマンドの設定がごちゃごちゃと含まれています。
これはあまり参考にはならないですね。


(load "~/my-emacs-packages.el")
(load "~/my-emacs-settings.el")
(load "~/my-emacs-macros.el")
(load "~/my-emacs-each-site.el")

(server-start)

;;;
;;; for Customization by Customize Command.
;;;

(put 'upcase-region 'disabled nil)

(put 'downcase-region 'disabled nil)
(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.
 '(ansi-color-names-vector
   ["black" "#d55e00" "#009e73" "#f8ec59" "#0072b2" "#cc79a7" "#56b4e9" "white"])
 '(auto-mode-case-fold t)
 '(c-block-comment-prefix "")
 '(c-offsets-alist nil)
 '(column-number-mode t)
 '(custom-enabled-themes '(leuven))
 '(global-font-lock-mode t)
 '(grep-command "grep -n ")
 '(grep-find-command '("find . -type f -exec grep -n  {} NUL \\;" . 31))
 '(grep-find-template "find . <X> -type f <F> -exec grep <C> -n <R> {} NUL \\;")
 '(grep-highlight-matches 'always)
 '(grep-template "grep <X> <C> -n <R> <F>")
 '(grep-use-null-device t)
 '(gud-pdb-command-name "c:/python34/python -m pdb")
 '(package-selected-packages
   '(flycheck flycheck-google-cpplint google-c-style csharp-mode kotlin-mode win-switch undo-tree))
 '(python-check-command "env LANG=ja_jp.UTF-8 C:/Python36/Scripts/pylint")
 '(sgml-xml-mode t)
 '(tool-bar-mode nil)
 '(truncate-lines t)
 '(uniquify-buffer-name-style 'post-forward-angle-brackets nil (uniquify))
 '(vhdl-basic-offset 4)
 '(vhdl-end-comment-column 119)
 '(w32-allow-system-shell nil)
 '(w32-list-proportional-fonts nil t)
 '(w32-use-w32-font-dialog t))
(custom-set-faces
 ;; custom-set-faces 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.
 '(default ((t (:family #("HGゴシックM" 2 8 (charset katakana-sjis)) :foundry "outline" :slant normal :weight regular :height 158 :width normal)))))
(put 'narrow-to-region 'disabled nil)