neovim

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

luau.vim (225B)


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