1. Get the Plugin

First install the Funovus Lua extension

2. (Optional) Setup File Associations

<aside> ⚠️ This step may be necessary if you’re using alternative VS Code plugins for Lua, but isn’t needed if you’re only using the Funovus lua extensions

</aside>

Next you’ll need to set up your file associations in VS Code’s Settings → User Preferences

This can be done in the Settings Editor by searching for “associations” and adding *.lua.txt to the lua value.

Screenshot_45.png

Alternatively, you add this to settings.json via

"files.associations": {
    "*.lua.txt": "lua"
}