; color-theme setup:
(require 'color-theme)
(color-theme-initialize)
(color-theme-gruber-darker)

; coffee-mode setup:
(add-to-list 'load-path "~/.emacs.d/vendor/coffee-mode")
(require 'coffee-mode)

(add-to-list 'auto-mode-alist '("\\.coffee$" . coffee-mode))
(add-to-list 'auto-mode-alist '("Cakefile" . coffee-mode))

; markdown-mode setup:
(autoload 'markdown-mode "markdown-mode.el"
  "Major mode for editing Markdown files" t)
(setq auto-mode-alist
      (cons '("\\.md" . markdown-mode) auto-mode-alist))

; Font setup:
(set-default-font "Fixedsys Excelsior 3.01")

; Console setup:
(add-to-list 'process-coding-system-alist
	     '("powershell.exe" cp866 . cp866))


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