summary refs log tree commit diff
path: root/configs/vscode/settings.nix
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2025-02-10 21:59:19 +0100
committerMel <einebeere@gmail.com>2025-02-10 21:59:19 +0100
commit04de433a0da70a070d6c7c483e6f99a7fd42b3b7 (patch)
tree6d24c598e295373167fdece555747279a8898179 /configs/vscode/settings.nix
parent6ee431a5fa23f240e232eb7dc78f72c8372d5422 (diff)
downloadminerals-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/settings.nix')
-rw-r--r--configs/vscode/settings.nix10
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;