Files
vim-polyglot/indent/glsl.vim

16 lines
287 B
VimL

if !polyglot#util#IsEnabled('glsl', expand('<sfile>:p'))
finish
endif
" Language: OpenGL Shading Language
" Maintainer: Sergey Tikhomirov <sergey@tikhomirov.io>
if exists("b:did_indent")
finish
endif
setlocal autoindent cindent
setlocal formatoptions+=roq
" vim:set sts=2 sw=2 :