neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

glsl.vim (320B)


      1 " Language: OpenGL Shading Language
      2 " Maintainer: Gregory Anders <greg@gpanders.com>
      3 " Last Modified: 2024 Jul 21
      4 " Upstream: https://github.com/tikhomirov/vim-glsl
      5 
      6 if exists('b:did_indent')
      7  finish
      8 endif
      9 let b:did_indent = 1
     10 
     11 setlocal autoindent cindent
     12 setlocal cinoptions&
     13 
     14 let b:undo_indent = 'setl ai< ci< cino<'