Skip to content

Instantly share code, notes, and snippets.

@marcusti
Created August 26, 2010 19:09
Show Gist options
  • Save marcusti/552004 to your computer and use it in GitHub Desktop.
Save marcusti/552004 to your computer and use it in GitHub Desktop.
emacs config
;; === Emacs configuration file
;; === save it to ~/.emacs
(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.
'(case-fold-search t)
'(current-language-environment "UTF-8")
'(default-input-method "rfc1345")
'(global-font-lock-mode t nil (font-lock))
'(make-backup-files nil)
'(mouse-wheel-mode t nil (mwheel))
'(pc-selection-mode t nil (pc-select))
'(show-paren-mode t nil (paren))
'(text-mode-hook (quote (turn-on-auto-fill text-mode-hook-identify)))
'(truncate-lines t)
'(visible-bell 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 (:inherit nil :stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 113 :width normal :foundry "unknown" :family "DejaVu Sans Mono")))))
(add-hook 'comint-output-filter-functions
'comint-watch-for-password-prompt)
(add-hook 'html-mode-hook
'(lambda () (auto-fill-mode 0)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment