(custom-set-variables
  ;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
  ;; Your init file should contain only one such instance.
 '(case-fold-search t)
 '(current-language-environment "Latin-1")
 '(default-input-method "latin-1-prefix")
 '(global-font-lock-mode t nil (font-lock))
 '(show-paren-mode t nil (paren)))
(custom-set-faces
  ;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
  ;; Your init file should contain only one such instance.
 )

(set-face-font 
 'default 
 "-outline-Bitstream Vera Sans Mono-normal-r-normal-normal-13-97-96-96-c-*-iso8859-1")

(tool-bar-mode -1)
(menu-bar-mode -1)

(put 'narrow-to-region 'disabled nil)
(set-background-color "black")
(set-foreground-color "gray")
(set-cursor-color "white")

(load-file "C:/custom-fns.el")
(load-file "C:/.emacs.d/ecmascript-mode.el")
(load-file "C:/.emacs.d/ruby-mode.el")
(load-file "C:/.emacs.d/css-mode.el")
(load-file "C:/.emacs.d/yml-mode.el")

(put 'downcase-region 'disabled nil)

(setq auto-mode-alist (cons '("\\.css\\'" . css-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.rb$" . ruby-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.rjs$" . ruby-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.js$" . ecmascript-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.rhtml$" . sgml-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.html.erb$" . sgml-mode) auto-mode-alist))
(setq auto-mode-alist (cons '("\\.yml$" . yaml-mode) auto-mode-alist))

(setq truncate-lines 1)
(show-paren-mode t)
(column-number-mode 1)

;(add-to-list 'load-path "C:/elisp/rinari")
;(add-to-list 'load-path "C:/elisp/rinari/test/lisp")
;(add-to-list 'load-path "C:/elisp/rinari/rhtml")

;(defface erb-face
;  `((t (:background "black")))
;  "Default inherited face for ERB tag body"
;  :group 'rhtml-faces)

;(defface erb-delim-face
;  `((t (:background "black")))
;  "Default inherited face for ERB tag delimeters"
;  :group 'rhtml-faces)

;(require 'rinari)

(put 'upcase-region 'disabled nil)

(put 'scroll-left 'disabled nil)
