Sourcekit-lsp doesn't work on my linux(swiftly + vscode)

the autocomplete doesn’t work and it doesn’t show the documents of the functions and types.

in the settings.json:

{
    "terminal.integrated.profiles.linux": {
        "bash": {
            "path": "bash",
            "icon": "terminal-bash"
        },
        "zsh": {
            "path": "zsh"
        },
        "fish": {
            "path": "fish"
        },
        "tmux": {
            "path": "tmux",
            "icon": "terminal-tmux"
        },
        "pwsh": {
            "path": "pwsh",
            "icon": "terminal-powershell"
        }
    },
    "swift.disableSwiftPackageManagerIntegration": true,
    "swift.sourcekit-lsp.trace.server": "verbose",
    "swift.pluginArguments": [
        
    ]
}

I can use the swift command in the terminal on the vscode.

what am I missing?

I think the "swift.disableSwiftPackageManagerIntegration": true, setting may be the issue, can you comment it out and reload?

cool. it is working. thanks