mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
15 lines
320 B
VimL
15 lines
320 B
VimL
|
" Language: OpenGL Shading Language
|
||
|
" Maintainer: Gregory Anders <greg@gpanders.com>
|
||
|
" Last Modified: 2024 Jul 21
|
||
|
" Upstream: https://github.com/tikhomirov/vim-glsl
|
||
|
|
||
|
if exists('b:did_indent')
|
||
|
finish
|
||
|
endif
|
||
|
let b:did_indent = 1
|
||
|
|
||
|
setlocal autoindent cindent
|
||
|
setlocal cinoptions&
|
||
|
|
||
|
let b:undo_indent = 'setl ai< ci< cino<'
|