neovim

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

bpftrace.vim (489B)


      1 " Vim indent file
      2 " Language:     bpftrace
      3 " Author:       Stanislaw Gruszka <stf_xl@wp.pl>
      4 " Last Change:  2025 Dec 27
      5 
      6 " Only load this indent file when no other was loaded.
      7 if exists("b:did_indent")
      8    finish
      9 endif
     10 let b:did_indent = 1
     11 
     12 setlocal noautoindent nosmartindent
     13 
     14 setlocal cindent
     15 setlocal cinoptions=+0,(0,[0,Ws,J1,j1,m1,>s
     16 setlocal cinkeys=0{,0},!^F,o,O,#0
     17 setlocal cinwords=
     18 
     19 let b:undo_indent = "setlocal autoindent< smartindent< cindent< cinoptions< cinkeys< cinwords<"