blob: 59eccac100d69aa66b54faa6aecdb8b9a2c9043c [file] [log] [blame]
Bram Moolenaarb7398fe2023-05-14 18:50:25 +01001" Vim syntax file
2" Language: Luau
3" Maintainer: None yet
4" Last Change: 2023 Apr 30
5
6if exists("b:current_syntax")
7 finish
8endif
9
10" Luau is a superset of lua
11runtime! syntax/lua.vim
12
13let b:current_syntax = "luau"
14
15" vim: nowrap sw=2 sts=2 ts=8 noet: