Skip to content

docs: add usage.md and /docs folder #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
coverage/**
out/**
src/**
usage.md
.gitignore
node_modules/**
**/tsconfig.json
Expand Down
17 changes: 17 additions & 0 deletions usage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Usage

## How to share extensions with code-server

When you install extensions remotely with VSCode, they are stored on the machine
here:

```shell
~/.vscode-server/extensions
```

If you're using code-server and want to use those same extensions, you can use
the `--extensions-dir` flag like so:

```shell
code-server --extensions-dir ~/.vscode-server/extensions
```