Skip to content

Commit

Permalink
Updates from my emacs config
Browse files Browse the repository at this point in the history
  • Loading branch information
ncrohn committed Apr 9, 2014
1 parent 970c3ec commit 7ca59ee
Show file tree
Hide file tree
Showing 4 changed files with 12,072 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .emacs
Expand Up @@ -31,6 +31,12 @@
(autoload 'css-mode "css-mode" "CSS Mode." t)
(add-to-list 'auto-mode-alist '("\\.css\\'" . css-mode))

(autoload 'less-css-mode "less-css-mode" "LESS Mode." t)
(add-to-list 'auto-mode-alist '("\\.less\\'" . less-css-mode))

(autoload 'thrift-mode "thrift-mode" "Thrift Mode." t)
(add-to-list 'auto-mode-alist '("\\.thrift\\'" . thrift-mode))

(autoload 'php-mode "php-mode" "PHP Mode." t)
(add-to-list 'auto-mode-alist '("\\.php\\'" . php-mode))
(add-to-list 'auto-mode-alist '("\\.tpl\\'" . php-mode))
Expand Down Expand Up @@ -115,4 +121,6 @@
" </body>\n"
"</html>")

(define-auto-insert "\\.html\\'" 'xhtml1t-throwaway)
(define-auto-insert "\\.html\\'" 'xhtml1t-throwaway)

;; (load "~/.emacs.d/floobits/floobits.el")

0 comments on commit 7ca59ee

Please sign in to comment.