Skip to content

Instantly share code, notes, and snippets.

@jadient
Last active February 11, 2018 01:13

Revisions

  1. jadient renamed this gist Feb 11, 2018. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. jadient renamed this gist Feb 11, 2018. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  3. jadient created this gist Feb 10, 2018.
    51 changes: 51 additions & 0 deletions .emacs
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,51 @@

    ;; 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)))