file templates: add slim; rename enh-ruby-mode->ruby-mode

This commit is contained in:
Henrik Lissner 2016-01-22 19:29:13 -05:00
parent 35008664fd
commit 9ad7418632

View file

@ -73,11 +73,11 @@
("/\\.rspec$" "__.rspec" rspec-mode)
("/spec_helper\\.rb$" "__helper" rspec-mode t)
("_spec\\.rb$" "__" rspec-mode t)
("/Rakefile$" "__Rakefile" enh-ruby-mode t)
("/Gemfile$" "__Gemfile" enh-ruby-mode t)
("\\.gemspec$" "__.gemspec" enh-ruby-mode t)
("/lib/.+\\.rb$" "__module" enh-ruby-mode t)
("\\.rb$" "__" enh-ruby-mode)
("/Rakefile$" "__Rakefile" ruby-mode t)
("/Gemfile$" "__Gemfile" ruby-mode t)
("\\.gemspec$" "__.gemspec" ruby-mode t)
("/lib/.+\\.rb$" "__module" ruby-mode t)
("\\.rb$" "__" ruby-mode)
;; Rust
("/Cargo.toml$" "__Cargo.toml" rust-mode)
@ -88,6 +88,9 @@
("/normalize\\.scss$" "__normalize.scss" scss-mode)
("\\.scss$" "__" scss-mode)
;; Slim
("/\\(index\\|main\\)\\.slim$" "__" slim-mode)
;; Shell scripts
("\\.z?sh$" "__" sh-mode)
)))