From feb5e6770c09c51d16ba7928364b7497974bf7c9 Mon Sep 17 00:00:00 2001 From: Asher Date: Fri, 28 Jul 2023 17:31:03 -0800 Subject: [PATCH] Add entry for location of configuration Closes #6324. --- docs/FAQ.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 730450fe5..8aa4849bf 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -192,10 +192,20 @@ docs](https://github.com/VSCodium/vscodium/blob/master/DOCS.md#extensions--marke ## Where are extensions stored? -Extensions are store, by default, to `~/.local/share/code-server/extensions`. +Extensions are stored in `~/.local/share/code-server/extensions` by default. -If you set the `XDG_DATA_HOME` environment variable, the data directory will be -`$XDG_DATA_HOME/code-server/extensions`. In general, we try to follow the XDG directory spec. +On Linux and macOS if you set the `XDG_DATA_HOME` environment variable, the +extensions directory will be `$XDG_DATA_HOME/code-server/extensions`. In +general, we try to follow the XDG directory spec. + +## Where is VS Code configuration stored? + +VS Code configuration such as settings and keybindings are stored in +`~/.local/share/code-server` by default. + +On Linux and macOS if you set the `XDG_DATA_HOME` environment variable, the data +directory will be `$XDG_DATA_HOME/code-server`. In general, we try to follow the +XDG directory spec. ## How can I reuse my VS Code configuration?