fork(4) download
  1. ; color-theme setup:
  2. (require 'color-theme)
  3. (color-theme-initialize)
  4. (color-theme-gruber-darker)
  5.  
  6. ; coffee-mode setup:
  7. (add-to-list 'load-path "~/.emacs.d/vendor/coffee-mode")
  8. (require 'coffee-mode)
  9.  
  10. (add-to-list 'auto-mode-alist '("\\.coffee$" . coffee-mode))
  11. (add-to-list 'auto-mode-alist '("Cakefile" . coffee-mode))
  12.  
  13. ; markdown-mode setup:
  14. (autoload 'markdown-mode "markdown-mode.el"
  15. "Major mode for editing Markdown files" t)
  16. (setq auto-mode-alist
  17. (cons '("\\.md" . markdown-mode) auto-mode-alist))
  18.  
  19. ; Font setup:
  20. (set-default-font "Fixedsys Excelsior 3.01")
  21.  
  22. ; Console setup:
  23. (add-to-list 'process-coding-system-alist
  24. '("powershell.exe" cp866 . cp866))
  25.  
  26.  
  27. ;;; This was installed by package-install.el.
  28. ;;; This provides support for the package system and
  29. ;;; interfacing with ELPA, the package archive.
  30. ;;; Move this code earlier if you want to reference
  31. ;;; packages in your .emacs.
  32. (when
  33. (load
  34. (expand-file-name "~/.emacs.d/elpa/package.el"))
  35. (package-initialize))
  36.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty