mirror of
https://github.com/CompeyDev/lune-luau-template.git
synced 2024-12-12 04:40:41 +00:00
22 lines
546 B
Lua
22 lines
546 B
Lua
require("luau-lsp").config({
|
|
server = {
|
|
settings = {
|
|
["luau-lsp"] = {
|
|
require = {
|
|
mode = "relativeToFile",
|
|
directoryAliases = {
|
|
["@lune"] = "~/.lune/.typedefs/0.8.6/",
|
|
},
|
|
},
|
|
completion = {
|
|
imports = {
|
|
enabled = true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
platform = {
|
|
type = "standard",
|
|
},
|
|
})
|