Enable syntax highlighting of LLVM and tablegen files by default,
authorDan Gohman <gohman@apple.com>
Wed, 21 Jan 2009 21:47:51 +0000 (21:47 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 21 Jan 2009 21:47:51 +0000 (21:47 +0000)
so that users don't have to copy text from the README to get this.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62718 91177308-0d34-0410-b5e6-96231b3b80d8

utils/vim/vimrc

index 1b2de0f7f2c914784f199c69ba61bbd9688551cb..7b1fd872b274c9cae5916ece46e5b18997dc873f 100644 (file)
@@ -58,3 +58,15 @@ command! DeleteTrailingWs :%s/\s\+$//
 
 " Convert all tab characters to two spaces
 command! Untab :%s/\t/  /g
+
+" Enable syntax highlighting for LLVM files. To use, copy
+" utils/vim/llvm.vim to ~/.vim/syntax .
+augroup filetype
+  au! BufRead,BufNewFile *.ll     set filetype=llvm
+augroup END
+
+" Enable syntax highlighting for tablegen files. To use, copy
+" utils/vim/tablegen.vim to ~/.vim/syntax .
+augroup filetype
+  au! BufRead,BufNewFile *.td     set filetype=tablegen
+augroup END