Google Docs-style sync, but for files on your disk, in your editor. Vim, VS Code, Emacs, Sublime — if your editor can save to disk, it works.
npm install -g livesync
Alpha Open source, free, expect rough edges.
livesync join abc123 my-copy.mdConcurrent edits merge cleanly thanks to CRDTs (powered by Yjs) — no locking, no manual conflict resolution.
LiveSync writes changes to disk — your editor needs to detect and reload external changes. Most do this automatically:
| Editor | Setup |
|---|---|
| VS Code | Works out of the box |
| Sublime Text | Works out of the box |
| JetBrains | Reloads on window focus |
| Vim / Neovim | set autoread + autocmd FocusGained,CursorHold * checktime |
| Emacs | Enable auto-revert-mode |