From ad22c47123340de4848e995d2cfb675aba485b2e Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Thu, 19 Oct 2023 13:31:22 +0200 Subject: [PATCH] add vscodium --- modules/vscodium.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/modules/vscodium.nix b/modules/vscodium.nix index e561779..bcc79c6 100644 --- a/modules/vscodium.nix +++ b/modules/vscodium.nix @@ -7,19 +7,22 @@ (vscode-with-extensions.override { vscode = vscodium; vscodeExtensions = with vscode-extensions; [ - #bbenoist.nix #ms-azuretools.vscode-docker #ms-vscode-remote.remote-ssh - # https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one - # https://github.com/yzhang-gh/vscode-markdown - yzhang.markdown-all-in-one - + # Load environment from `shell.nix`. # https://matthewrhone.dev/nixos-vscode-environment - # https://marketplace.visualstudio.com/items?itemName=arrterian.nix-env-selector + # https://github.com/arrterian/nix-env-selector arrterian.nix-env-selector - # IntelliSense (Pylance), Linting, Debugging (multi-threaded, remote), code formatting, refactoring, unit tests, and more. + # Extended Markdown support, e.g. insert TOC. + # https://github.com/yzhang-gh/vscode-markdown + yzhang.markdown-all-in-one + # Nix language support. + # https://github.com/bbenoist/vscode-nix + bbenoist.nix + # Python language support: + # IntelliSense (Pylance), Linting, Debugging, code formatting, unit tests, etc. ms-python.python ]; })