diff options
| author | Mel <einebeere@gmail.com> | 2025-02-10 21:59:19 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2025-02-10 21:59:19 +0100 |
| commit | 04de433a0da70a070d6c7c483e6f99a7fd42b3b7 (patch) | |
| tree | 6d24c598e295373167fdece555747279a8898179 /configs/vscode | |
| parent | 6ee431a5fa23f240e232eb7dc78f72c8372d5422 (diff) | |
| download | minerals-04de433a0da70a070d6c7c483e6f99a7fd42b3b7.tar.zst minerals-04de433a0da70a070d6c7c483e6f99a7fd42b3b7.zip | |
Add modified ESP-IDF package configuration to VSCodium
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'configs/vscode')
| -rw-r--r-- | configs/vscode/settings.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/configs/vscode/settings.nix b/configs/vscode/settings.nix index 4e2fba1..732aab8 100644 --- a/configs/vscode/settings.nix +++ b/configs/vscode/settings.nix @@ -1,4 +1,4 @@ -{ pkgs, lib, ... }: +{ pkgs, lib, esp-idf, ... }: let inherit (lib) getExe; @@ -66,6 +66,14 @@ in dlv = getExe delve; }; + # development environment tools configuration + "idf.espIdfPath" = "${esp-idf}"; + "idf.toolsPath" = "${esp-idf}/tools"; + "idf.gitPath" = getExe pkgs.git; + "idf.pythonInstallPath" = "${esp-idf}/python-env/bin/python"; + "idf.showOnboardingOnInit" = false; + "idf.hasWalkthroughBeenShown" = true; + # vscode+vim configuration "vim.useSystemClipboard" = true; "vim.easymotion" = true; |
