Tuesday, 9 September 2025

Zuban lsp with sublime text using uv virtual env

install zuban as said in docs

create starter shell script to activate venv

```bash

#!/bin/bash

source "$(uv python find | sed 's/python3$/activate/')"

/opt/homebrew/bin/zuban server

```

 in LSP.sublime-settings add this

{
"log_debug": true,
"clients": {
    "zuban": {
      // enable this configuration
      "enabled": true,
      // the startup command -- what you would type in a terminal
      "command": ["/bin/bash", "/opt/homebrew/bin/zubanvenv"],
      "selector": "source.python"
    }
}
}