Last active
February 11, 2018 01:13
-
-
Save jadient/9b3331328a1e75e0a6469d284b8f4b2f to your computer and use it in GitHub Desktop.
.emacs on windows
This file contains hidden or 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
;; Added by Package.el. This must come before configurations of | |
;; installed packages. Don't delete this line. If you don't want it, | |
;; just comment it out by adding a semicolon to the start of the line. | |
;; You may delete these explanatory comments. | |
(package-initialize) | |
(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. | |
'(custom-safe-themes | |
(quote | |
("7eec2320bae0f6f6e977a9bd65943fbeb5e568838024b2d4aac28dde18fcee94" default))) | |
'(display-buffer-alist | |
(quote | |
(("\\*shell\\*" | |
(display-buffer-reuse-window display-buffer-same-window))))) | |
'(electric-indent-mode nil) | |
'(graphviz-dot-view-command "dot-to-png %s") | |
'(grep-command "grp ") | |
'(grep-find-ignored-directories (quote (".svn" ".git"))) | |
'(grep-find-ignored-files | |
(quote | |
(".#*" "*.obj" "*~" "*.bin" "*.bak" "*.obj" "*.map" "*.lnk" "*.dll" "*.elc" "*.idx" "*.class" "*.lib" "*.pyc" "*.pyo"))) | |
'(grep-template "grep <X> <C> -i -nH -e <R> <F>") | |
'(grep-use-null-device nil) | |
'(inhibit-startup-screen t) | |
'(mode-line-format | |
(quote | |
("%e" mode-line-front-space mode-line-mule-info mode-line-client mode-line-modified mode-line-remote mode-line-frame-identification mode-line-buffer-identification " " buffer-file-name " " mode-line-position | |
(vc-mode vc-mode) | |
" " mode-line-modes mode-line-misc-info mode-line-end-spaces))) | |
'(save-place-mode t nil (saveplace)) | |
'(tab-stop-list | |
(quote | |
(4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100 104 108 112 116 120))) | |
'(tidy-shell-command "c:/box/programs/bin/tidy.exe") | |
'(tool-bar-mode nil)) | |
(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 (:inherit nil :stipple nil :background "SystemWindow" :foreground "SystemWindowText" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 113 :width normal :foundry "outline" :family "Inconsolata"))))) | |
;; security fix added in 25.3, this code is for earlier versions | |
(eval-after-load "enriched" | |
'(defun enriched-decode-display-prop (start end &optional param) | |
(list start end))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment