neovim

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

luau.vim (252B)


      1 " Vim syntax file
      2 " Language:	Luau
      3 " Maintainer:	None yet
      4 " Last Change:	2023 Apr 30
      5 
      6 if exists("b:current_syntax")
      7  finish
      8 endif
      9 
     10 " Luau is a superset of lua
     11 runtime! syntax/lua.vim
     12 
     13 let b:current_syntax = "luau"
     14 
     15 " vim: nowrap sw=2 sts=2 ts=8 noet: