From 8f6362b4e40186511cabe63a4c73bba9539d5602 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Sat, 29 Jan 2022 00:55:38 +0300 Subject: [PATCH] update vscode config --- profiles/applications/vscode.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/profiles/applications/vscode.nix b/profiles/applications/vscode.nix index 4cfdf8b..b9fc5a8 100644 --- a/profiles/applications/vscode.nix +++ b/profiles/applications/vscode.nix @@ -189,9 +189,14 @@ in "git.enableCommitSigning" = true; "git-graph.repository.sign.commits" = true; "git-graph.repository.sign.tags" = true; - "remote.SSH.configFile" = "/home/alukard/.ssh/remote_config"; "editor.bracketPairColorization.enabled" = true; "editor.guides.bracketPairs" = "active"; + "terminal.integrated.defaultProfile.linux" = "linux-zsh"; + "terminal.integrated.profiles.linux" = { + "linux-zsh" = { + "path" = "${pkgs.zsh}/bin/zsh"; + }; + }; }; };