summaryrefslogtreecommitdiff
path: root/.vim/filetype.vim
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-10-07 17:05:19 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-10-07 17:05:19 +0200
commitdd5427baaf49f8de4355abeb6bc8c6dd14f74e25 (patch)
tree46fcfc70bd792e80ceebaab89a7f8fc06bc29101 /.vim/filetype.vim
downloaddotfiles-dd5427baaf49f8de4355abeb6bc8c6dd14f74e25.tar.gz
dotfiles-dd5427baaf49f8de4355abeb6bc8c6dd14f74e25.tar.bz2
dotfiles-dd5427baaf49f8de4355abeb6bc8c6dd14f74e25.zip
Initial check-in of files
Diffstat (limited to '.vim/filetype.vim')
-rw-r--r--.vim/filetype.vim11
1 files changed, 11 insertions, 0 deletions
diff --git a/.vim/filetype.vim b/.vim/filetype.vim
new file mode 100644
index 0000000..d267276
--- /dev/null
+++ b/.vim/filetype.vim
@@ -0,0 +1,11 @@
+if exists("did_load_filetypes")
+ finish
+endif
+augroup filetypedetect
+ au! BufRead,BufNewFile *.cobra setfiletype cobra
+ au! BufRead,BufNewFile *.vala setfiletype vala
+ au! BufRead,BufNewFile *.tpl setfiletype npt
+ au! BufRead,BufNewFile *.mako setfiletype mako
+ au! BufRead,BufNewFile *.ML setfiletype sml
+augroup END
+