Added fix for vscode remote ssh, using custom ssh config file path

This commit is contained in:
2025-10-27 17:47:52 -04:00
parent 038cc8ce3b
commit a21abe2f8f

View File

@@ -50,6 +50,12 @@
"workbench.colorTheme" = "Catppuccin Mocha"; "workbench.colorTheme" = "Catppuccin Mocha";
"catppuccin.accentColor" = "flamingo"; "catppuccin.accentColor" = "flamingo";
# Remote SSH
# VSCode attempts to write to ~/.ssh/config for remote ssh connections.
# Because ~/.ssh/config is managed with home-manager, it is not writeable.
# So we specify a custom ssh config path
"remote.SSH.configFile" = "/home/eclypse/.ssh/vscode-config";
# Prettier # Prettier
"editor.defaultFormatter" = "esbenp.prettier-vscode"; "editor.defaultFormatter" = "esbenp.prettier-vscode";
"prettier.bracketSpacing" = true; "prettier.bracketSpacing" = true;