mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
17 lines
329 B
VimL
17 lines
329 B
VimL
if polyglot#init#is_disabled(expand('<sfile>:p'), 'glsl', 'indent/glsl.vim')
|
|
finish
|
|
endif
|
|
|
|
" Language: OpenGL Shading Language
|
|
" Maintainer: Sergii Tykhomyrov <sergii@tykhomyrov.net>
|
|
|
|
if exists("b:did_indent")
|
|
finish
|
|
endif
|
|
|
|
setlocal autoindent cindent
|
|
setlocal formatoptions+=roq
|
|
setlocal cinoptions&
|
|
|
|
" vim:set sts=2 sw=2 :
|