mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 04:23:51 -05:00
16 lines
273 B
VimL
16 lines
273 B
VimL
if has_key(g:polyglot_is_disabled, 'glsl')
|
|
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 :
|