]> git.phdru.name Git - dotfiles.git/blobdiff - .vim/filetype.vim
.vim/filetype.vim: For `stackoverflow` exec `Code`
[dotfiles.git] / .vim / filetype.vim
index 0a093e9437b8f8427611f2e6785b1ed2cfc82915..2437adab5406f1352c1d2c693cff736c29d43c23 100644 (file)
@@ -5,7 +5,10 @@ endif
 augroup filetypedetect
    " Text files
    autocmd BufNewFile,BufReadPost *.txt,*README* setlocal filetype=text
-   autocmd BufReadPost ~/tmp/*.txt setlocal textwidth=0 " Files from ViewSourceWith
+
+   " Files from textern
+   autocmd BufReadPost /tmp/textern*/*.txt setlocal textwidth=0
+   autocmd BufReadPost /tmp/textern*/stackoverflow.com*.txt Code
 
    " Cheetah templates
    autocmd BufNewFile,BufReadPost *.tmpl setlocal filetype=htmlcheetah
@@ -32,7 +35,4 @@ augroup filetypedetect
    autocmd BufReadPost svn-commit.tmp*,svn-commit.*.tmp* setlocal filetype=svncommit
    autocmd BufReadPost /tmp/hg-editor-*.txt setlocal filetype=hgcommit
    autocmd BufReadPost .git/*MSG setlocal filetype=gitcommit
-
-   " Medap-RM Method files
-   autocmd BufNewFile,BufReadPost *.rsc setlocal filetype=conf filetype=medaprm-method
 augroup END