Index: tools/vim/filetypes.vim |
diff --git a/tools/vim/filetypes.vim b/tools/vim/filetypes.vim |
index 930b7aec2e7ade3e2f0207d086dbe6ea4638bb6a..63f0450d797f6e91acdb4e7a796432600208b4ee 100644 |
--- a/tools/vim/filetypes.vim |
+++ b/tools/vim/filetypes.vim |
@@ -1,8 +1,9 @@ |
-" To get syntax highlighting and tab settings for gyp(i) files, add the |
-" following to your .vimrc file: |
+" To get syntax highlighting and tab settings for gyp(i) and DEPS files, |
+" add the following to your .vimrc file: |
" so /path/to/src/vim/filetypes.vim |
tfarina
2011/07/07 23:34:06
While you here, shouldn't this be:
/path/to/chrom
scherkus (not reviewing)
2011/07/08 00:16:20
Done.
|
augroup filetype |
au! BufRead,BufNewFile *.gyp set filetype=python expandtab tabstop=2 shiftwidth=2 |
au! BufRead,BufNewFile *.gypi set filetype=python expandtab tabstop=2 shiftwidth=2 |
+ au! BufRead,BufNewFile DEPS set filetype=python expandtab tabstop=2 shiftwidth=2 |
augroup END |