Add opencl support

This commit is contained in:
Adam Stankiewicz
2014-03-16 14:52:12 +01:00
parent 95bc6710a4
commit 10b28c4175
6 changed files with 189 additions and 4 deletions

15
ftplugin/opencl.vim Normal file
View File

@@ -0,0 +1,15 @@
if exists("b:did_ftplugin") | finish | endif
if version > 600
runtime! ftplugin/c.vim
endif
" Smaller tab stops.
setlocal tabstop=4
setlocal shiftwidth=4
" Smart tabbing/indenting
setlocal smarttab
setlocal smartindent
let b:did_ftplugin = 1