README.md
# Cursor Settings Sync Extension
A VSCode extension for Cursor that enables seamless synchronization of settings, keybindings, and extensions across multiple workspaces and machines.
## Features
- Sync settings across multiple Cursor installations
- Export/Import functionality
- Automatic workspace state preservation
- Keybinding synchronization
This file has been truncated. show original
extension.ts
import * as fs from "fs";
import * as os from "os";
import * as path from "path";
import * as vscode from "vscode";
interface CursorSettings {
settings: any;
keybindings: any;
extensions: string[];
workspaceState: any;
This file has been truncated. show original
install.ps1
<#
.SYNOPSIS
Installs the Cursor Settings Sync extension
.DESCRIPTION
Builds and installs the Cursor Settings Sync extension in the current Cursor installation
.NOTES
Version: 1.0
Author: Your Name
Last Updated: 2024-01-04
#>
This file has been truncated. show original
There are more than three files. show original