mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
R=bcornell@google.com, impjdi@google.com BUG=libyuv:459 Review URL: https://webrtc-codereview.appspot.com/52149004.
10 lines
469 B
VimL
10 lines
469 B
VimL
" 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
|