X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=auto-modes.el;h=21149accf13e3ff2059fe1bf408f6f8b3271ebda;hb=5b0477a6fe73109726c3e6e727daf4e44e0fe2b7;hp=39abd4210f66fd66816771f94122600cbaa56c84;hpb=ffbe0905bafb79f5f0a5e3b0f0df6d33057c535a;p=emacs.d.git diff --git a/auto-modes.el b/auto-modes.el index 39abd42..21149ac 100644 --- a/auto-modes.el +++ b/auto-modes.el @@ -20,7 +20,10 @@ ;; css-mode '("\\.css$" . css-mode) - + + ;; ebuild-mode + '("\\.ebuild$" . ebuild-mode) + ;; ecmascript-mode '("\\.js$" . ecmascript-mode) @@ -44,12 +47,13 @@ '("\\.php$" . php-mode) ;; python-mode - '("\\.py$" . python-mode) + '("\\.pyx?$" . python-mode) ;; ruby-mode '("\\.rake$" . ruby-mode) '("\\.rb$" . ruby-mode) - + + '("\\.pdf$" . fundamental-mode) ) auto-mode-alist))