Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexclique committed Jun 16, 2012
1 parent a827ef3 commit c77b08c
Show file tree
Hide file tree
Showing 13 changed files with 2,661 additions and 8 deletions.
17 changes: 10 additions & 7 deletions reload.rb
Expand Up @@ -5,21 +5,24 @@
File.open('local.el', 'w') do |f|
f.puts '(load "volvox")'
f.puts '(autoload \'markdown-mode "markdown-mode.el"
"Major mode for editing Markdown files" t)
(setq auto-mode-alist
(cons \'("\\.md" . markdown-mode) auto-mode-alist))'
"Major mode for editing Markdown files" t)
(setq auto-mode-alist
(cons \'("\\.md" . markdown-mode) auto-mode-alist))'
f.puts '(require \'mustache-mode)'
f.puts '(require \'any-ini-mode)'
f.puts '(require \'color-theme)'
f.puts '(autoload \'js2-mode "js2" nil t)
(add-to-list \'auto-mode-alist \'("\\.js$" . js2-mode))'
(add-to-list \'auto-mode-alist \'("\\.js$" . js2-mode))'
f.puts '(require \'magit)'
f.puts '(autoload \'mode-compile "mode-compile"
"Command to compile current buffer file based on the major mode" t)'
"Command to compile current buffer file based on the major mode" t)'
f.puts '(autoload \'scss-mode "scss-mode")
(add-to-list \'auto-mode-alist \'("\\.scss\\\'" . scss-mode))'
(add-to-list \'auto-mode-alist \'("\\.scss\\\'" . scss-mode))'
f.puts '(require \'textmate)
(textmate-mode)'
(textmate-mode)'
f.puts '(require \'yaml-mode)
(add-to-list \'auto-mode-alist \'("\\.yml$" . yaml-mode))'

end

puts "Don't forget to M-x byte-compile-file js2"
23 changes: 23 additions & 0 deletions volvox.el
Expand Up @@ -16,6 +16,29 @@
(load "volvox/github")
(load "volvox/git")
(load "volvox/todo")
;;ruby
(load "volvox/ruby")
(load "volvox/ruby-mode")
(load "volvox/ruby-style")
(load "volvox/rdoc-mode")
(load "volvox/inf-ruby")
(load "volvox/ruby-electric")
(load "volvox/rubydb3x")
(load "volvox/rubydb2x")
;;python
(load "volvox/python")
;;lua
(load "volvox/lua")
;;artist
(load "volvox/artist")
;;dired
(load "volvox/dired")
;;erlang
(load "volvox/erlang")
;;misc
(load "volvox/sgml")
(load "volvox/shell")
(load "volvox/todo")

(when (file-exists-p "volvox/private")
(load "volvox/private"))
Expand Down
12 changes: 12 additions & 0 deletions volvox/README
@@ -0,0 +1,12 @@
README this file
inf-ruby.el program to run ruby under emacs
rb_optparse.bash bash completion script
rb_optparse.zsh zsh completion script
rdoc-mode.el RDoc mode for emacs
ruby-mode.el ruby mode for emacs
ruby-style.el Ruby's C/C++ mode style for emacs
rubydb2x.el ruby debugger support for emacs 19.2x or before
rubydb3x.el ruby debugger support for emacs 19.3x or later
ruby-electric.el emacs minor mode providing electric commands

Check out http://rubyforge.org/projects/ruby-debug/ also.

0 comments on commit c77b08c

Please sign in to comment.