Skip to content

Instantly share code, notes, and snippets.

@ehlyzov
Created March 17, 2010 08:24
Show Gist options
  • Save ehlyzov/335022 to your computer and use it in GitHub Desktop.
Save ehlyzov/335022 to your computer and use it in GitHub Desktop.
(require 'yaml-mode)
(add-to-list 'auto-mode-alist '("\.yml$" . yaml-mode))
;; use exuberant-ctags
;;
;; Generate file with:
;; ctags-exuberant -a -e -f TAGS --tag-relative -R app lib vendor
(setq rinari-tags-file-name "TAGS")
;; haml-mode and & sass-mode
;; http://github.com/nex3/haml/
(require 'haml-mode)
(require 'sass-mode)
(add-to-list 'auto-mode-alist '("\.haml$" . haml-mode))
(add-to-list 'auto-mode-alist '("\.sass$" . sass-mode))
;; we are going to debugging
;; svn checkout svn://rubyforge.org/var/svn/ruby-debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment