summaryrefslogtreecommitdiffstats
path: root/tools/vim
diff options
context:
space:
mode:
Diffstat (limited to 'tools/vim')
-rw-r--r--tools/vim/filetypes.vim7
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/vim/filetypes.vim b/tools/vim/filetypes.vim
index 930b7ae..3e7c8f9 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:
-" so /path/to/src/vim/filetypes.vim
+" To get syntax highlighting and tab settings for gyp(i) and DEPS files,
+" add the following to your .vimrc file:
+" so /path/to/src/tools/vim/filetypes.vim
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