mirror of
https://github.com/CompeyDev/lune-luau-template.git
synced 2024-12-12 12:50:41 +00:00
23 lines
546 B
Lua
23 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",
|
||
|
},
|
||
|
})
|