Skip to content

Instantly share code, notes, and snippets.

@langmartin
Created May 18, 2009 16:38
Show Gist options
  • Select an option

  • Save langmartin/113597 to your computer and use it in GitHub Desktop.

Select an option

Save langmartin/113597 to your computer and use it in GitHub Desktop.
;;; This was installed by package-install.el.
;;; This provides support for the package system and
;;; interfacing with ELPA, the package archive.
;;; Move this code earlier if you want to reference
;;; packages in your .emacs.
(when
(load
(expand-file-name "~/.emacs.d/elpa/package.el"))
(package-initialize))
(require 'highlight-symbol)
(add-to-list 'default-frame-alist '(font . "Consolas-11"))
(add-to-list 'load-path "~/site-lisp")
(add-to-list 'load-path "~/site-lisp/scheme")
(add-to-list 'load-path "~/site-lisp/unstable")
(setq freenode-password nil
twit-pass nil
twit-user nil
email-private nil
email-work nil
smtpmail-account-authinfo
`((,email-private . "~/.authinfo")
(,email-work . "~/.authinfo-work")))
(load "~/.emacs.d/authinfo.el")
(load "site-start")
(load "lang-dot-emacs")
(add-to-path '("c:/apps/Git/bin"
"c:/apps/Git/libexec/git-core"
"c:/apps/MiKTeX 2.7/miktex/bin"
"c:/apps/Aspell/bin"
"c:/apps/GnuTLS-2.6.6/bin"
"~/Code/windows-scripts"
))
(progn
(setenv "EDITOR" "emacsclient.bat")
(setenv "SSH_ASKPASS" "c:/apps/Git/libexec/git-core/git-gui--askpass")
(setenv "PAGER" "cat")
(setenv "DISPLAY" "1")
(setenv "SSH_AUTH_SOCK" (chomp (slurp-file-contents "~/ssh-socket.txt"))))
(mouse-avoidance-mode 1)
(setq visible-bell t)
(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.
'(js2-basic-offset 2)
'(js2-bounce-indent-flag nil)
'(org-agenda-files 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.
)
(put 'narrow-to-page 'disabled nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment