{"id":18929156,"url":"https://github.com/jwillikers/vscodium-config","last_synced_at":"2025-04-15T15:30:48.545Z","repository":{"id":104839662,"uuid":"327159047","full_name":"jwillikers/vscodium-config","owner":"jwillikers","description":"My settings for the VSCodium code editor.","archived":true,"fork":false,"pushed_at":"2021-06-29T13:48:22.000Z","size":55,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T21:52:14.900Z","etag":null,"topics":["config","dotfiles","flatpak","git","linux","settings","vscode","vscodium"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jwillikers.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.adoc","code_of_conduct":"CODE_OF_CONDUCT.adoc","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-01-06T00:49:46.000Z","updated_at":"2024-11-05T17:12:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"db7154a8-efdb-4ada-900d-2923622e8fb0","html_url":"https://github.com/jwillikers/vscodium-config","commit_stats":null,"previous_names":["jwillikers/vscodium-config"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwillikers%2Fvscodium-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwillikers%2Fvscodium-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwillikers%2Fvscodium-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwillikers%2Fvscodium-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jwillikers","download_url":"https://codeload.github.com/jwillikers/vscodium-config/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249097785,"owners_count":21212352,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["config","dotfiles","flatpak","git","linux","settings","vscode","vscodium"],"created_at":"2024-11-08T11:30:34.644Z","updated_at":"2025-04-15T15:30:48.539Z","avatar_url":"https://github.com/jwillikers.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"= VSCodium Settings\nJordan Williams \u003cjordan@jwillikers.com\u003e\n:experimental:\n:icons: font\nifdef::env-github[]\n:tip-caption: :bulb:\n:note-caption: :information_source:\n:important-caption: :heavy_exclamation_mark:\n:caution-caption: :fire:\n:warning-caption: :warning:\nendif::[]\n:VSCodium: https://vscodium.com/[VSCodium]\n\nMy settings for the {VSCodium} application.\n\n== Usage\n\nThese settings contain the settings file and the a list of extensions.\nThese settings are synchronized using this Git repository.\nThe following instructions detail how to use and sync this repository.\n\n=== Install\n\nInstall these settings with the following instructions.\n\n. Clone this repository.\n+\n[source,sh]\n----\n➜ git -C ~/Projects clone git@github.com:jwillikers/vscodium-settings.git\n----\n\n. Copy the `settings.json` file to the appropriate location.\n+\n--\nNOTE: Close VSCodium before copying the settings file.\n\n_Flatpak_::\n+\n[source,sh]\n----\n➜ cp ~/Projects/vscodium-settings/settings.json \\\n  ~/.var/app/com.vscodium.codium/config/VSCodium/User/\n----\n\n_System Package_::\n+\n[source,sh]\n----\n➜ cp ~/Projects/vscodium-settings/settings.json \\\n  ~/.config/VSCodium/User/\n----\n--\n\n. Install each extension listed in the `extensions.txt` file.\n+\n--\n_Flatpak_::\n+\n[source,sh]\n----\n➜ xargs -ra ~/Projects/vscodium-settings/extensions.txt -I{} flatpak run com.vscodium.codium --install-extension {}\n----\n\n_System Package_::\n+\n[source,sh]\n----\n➜ xargs -ra ~/Projects/vscodium-settings/extensions.txt -I{} codium --install-extension {}\n----\n--\n\n_Flatpak_:: There is some additional Flatpak-specific setup.\n+\n.. Set a standard, shared `tmp` directory for VSCodium to function as expected.\n+\n[source,sh]\n----\n➜ flatpak override --user --env=TMPDIR=/var/tmp com.vscodium.codium\n----\n\n.. Ensure the `functions` configuration directory for the fish shell exists.\n+\n[source,sh]\n----\n➜ mkdir -p ~/.config/fish/functions/\n----\n\n.. Install an alias for the fish shell which also appropriately handles running via Flatpak and from inside a https://github.com/containers/toolbox[toolbox].\n+\n--\n[source,sh]\n----\n➜ cp ~/Projects/vscodium-settings/codium.fish ~/.config/fish/functions/\n----\n\nThank you https://www.carmenbianca.eu[Carmen Bianca Bakker] for the blog post https://www.carmenbianca.eu/en/post/2021-02-05-silverblue-development/[Using Fedora Silverblue for development], the source of the original https://www.gnu.org/software/bash/[Bash] script for accomplishing this. \n--\n\n=== Update\n\nTo update the settings in this repository from an existing installation, follow these steps.\n\n. If you haven't already done so, clone this repository.\n+\n[source,sh]\n----\n➜ git -C ~/Projects clone git@github.com:jwillikers/vscodium-settings.git\n----\n\n. Copy the `settings.json` file from the appropriate location to the Git repository.\n+\n--\n_Flatpak_::\n+\n[source,sh]\n----\n➜ cp ~/.var/app/com.vscodium.codium/config/VSCodium/User/settings.json \\\n  ~/Projects/vscodium-settings/\n----\n\n_System Package_::\n+\n[source,sh]\n----\n➜ cp ~/.config/VSCodium/User/settings.json \\\n  ~/Projects/vscodium-settings/\n----\n--\n\n// todo Add instructions for using a merge tool to merge disparate settings files.\n\n. Add any currently installed extensions to the `extensions.txt` file.\n+\n--\n_Flatpak_::\n+\n[source,sh]\n----\n➜ flatpak run com.vscodium.codium --list-extensions \\\n    \u003e\u003e ~/Projects/vscodium-settings/extensions.txt; \\\n  and sort -u -o ~/Projects/vscodium-settings/extensions.txt \\\n    ~/Projects/vscodium-settings/extensions.txt\n----\n\n_System Package_::\n+\n[source,sh]\n----\n➜ codium --list-extensions \u003e\u003e ~/Projects/vscodium-settings/extensions.txt; \\\n  and sort -u -o ~/Projects/vscodium-settings/extensions.txt \\\n    ~/Projects/vscodium-settings/extensions.txt\n----\n--\n\n__Flatpak_:: The Flatpak requires additional steps.\n+\n.. Install an alias for the fish shell which also appropriately handles running via Flatpak and from inside a toolbox.\n+\n[source,sh]\n----\n➜ cp ~/.config/fish/functions/codium.fish ~/Projects/vscodium-settings/\n----\n\n== Code of Conduct\n\nThe project's Code of Conduct is available in the link:CODE_OF_CONDUCT.adoc[] file.\n\n== License\n\nThis repository is licensed under the https://www.gnu.org/licenses/gpl-3.0.html[GPLv3], available in the link:LICENSE.adoc[] file.\n\n== Copyright\n\n© 2020-2021 Jordan Williams\n\n== Authors\n\nmailto:{email}[{author}]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwillikers%2Fvscodium-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjwillikers%2Fvscodium-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwillikers%2Fvscodium-config/lists"}