Jump to content

VSCodium: Difference between revisions

m
fix broken syntax highlighting and formatting
imported>Alexnortung
mNo edit summary
imported>Wackbyte
m (fix broken syntax highlighting and formatting)
Line 5: Line 5:
Install the `vscodium` package.
Install the `vscodium` package.


<syntaxhighlight lang="nix>
<syntaxhighlight lang="nix">
  environment.systemPackages = with pkgs; [ vscodium ];
environment.systemPackages = with pkgs; [ vscodium ];
</syntaxhighlight>
</syntaxhighlight>


or ad-hoc
or ad-hoc


<syntaxhighlight>
<syntaxhighlight lang="console">
  nix-env -iA nixos.vscodium
$ nix-env -iA nixos.vscodium
</syntaxhighlight>
</syntaxhighlight>


Line 19: Line 19:
Extensions can be managed using the 'vscode-with-extensions' package, mostly like for [[Vscode]]:
Extensions can be managed using the 'vscode-with-extensions' package, mostly like for [[Vscode]]:


<syntaxHighlight lang=nix>
<syntaxhighlight lang="nix">
{ pkgs, ... }:
{ pkgs, ... }:


Line 44: Line 44:
   ];
   ];
}
}
</syntaxHighlight>
</syntaxhighlight>


Please note that some Visual Studio Code extensions have licenses that restrict their use to the official Visual Studio Code builds and therefore do not work with VSCodium. See [https://github.com/VSCodium/vscodium/blob/master/DOCS.md#proprietary-debugging-tools this note on the VSCodium docs page] for what's been found so far and possible workarounds.
Please note that some Visual Studio Code extensions have licenses that restrict their use to the official Visual Studio Code builds and therefore do not work with VSCodium. See [https://github.com/VSCodium/vscodium/blob/master/DOCS.md#proprietary-debugging-tools this note on the VSCodium docs page] for what's been found so far and possible workarounds.
In particular [https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh remote-ssh] does not work yet with vscodium.
In particular [https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-ssh remote-ssh] does not work yet with vscodium.
Anonymous user