From 04de433a0da70a070d6c7c483e6f99a7fd42b3b7 Mon Sep 17 00:00:00 2001 From: Mel Date: Mon, 10 Feb 2025 21:59:19 +0100 Subject: Add modified ESP-IDF package configuration to VSCodium Signed-off-by: Mel --- configs/vscode/settings.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'configs/vscode/settings.nix') 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; -- cgit 1.4.1