diff options
Diffstat (limited to 'configs')
| -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; |
