From a8c510a793f0f2b9ab40897d0186f406aa4d68ec Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 19 Oct 2023 11:48:59 -0400 Subject: [PATCH] Support windows terminal --- configs/windows-terminal/settings.json | 74 ++++++++++++++++++++++++++ install-windows.sh | 1 + 2 files changed, 75 insertions(+) create mode 100644 configs/windows-terminal/settings.json diff --git a/configs/windows-terminal/settings.json b/configs/windows-terminal/settings.json new file mode 100644 index 0000000..52b26ee --- /dev/null +++ b/configs/windows-terminal/settings.json @@ -0,0 +1,74 @@ +{ + "$help": "https://aka.ms/terminal-documentation", + "$schema": "https://aka.ms/terminal-profiles-schema", + "actions": [ + { + "command": { + "action": "copy", + "singleLine": false + }, + "keys": "ctrl+shift+c" + }, + { + "command": "paste", + "keys": "ctrl+shift+v" + } + ], + "copyFormatting": "none", + "copyOnSelect": false, + "defaultProfile": "{2ece5bfe-50ed-5f3a-ab87-5cd4baafed2b}", + "newTabMenu": [ + { + "type": "remainingProfiles" + } + ], + "profiles": { + "defaults": { + "useAtlasEngine": true + }, + "list": [ + { + "commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", + "font": { + "face": "Consolas" + }, + "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + "hidden": false, + "name": "Windows PowerShell" + }, + { + "commandline": "%SystemRoot%\\System32\\cmd.exe", + "font": { + "face": "Consolas" + }, + "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", + "hidden": false, + "name": "Command Prompt" + }, + { + "font": { + "face": "Consolas" + }, + "guid": "{2ece5bfe-50ed-5f3a-ab87-5cd4baafed2b}", + "commandline": "C:/Program Files/Git/bin/bash.exe --login", + "hidden": false, + "name": "Git Bash", + "source": "Git" + }, + { + "guid": "{2c4de342-38b7-51cf-b940-2309a097f518}", + "hidden": true, + "name": "Ubuntu", + "source": "Windows.Terminal.Wsl" + }, + { + "guid": "{51855cb2-8cce-5362-8f54-464b92b32386}", + "hidden": false, + "name": "Ubuntu", + "source": "CanonicalGroupLimited.Ubuntu_79rhkp1fndgsc" + } + ] + }, + "schemes": [], + "themes": [] +} \ No newline at end of file diff --git a/install-windows.sh b/install-windows.sh index 02d4483..a8c68ae 100644 --- a/install-windows.sh +++ b/install-windows.sh @@ -28,6 +28,7 @@ mkdir -p ~/.ssh # Configure the shell ln -sf $EWCONFIG_ROOT/configs/shells/zsh/.zshrc ~/.zshrc ln -sf $EWCONFIG_ROOT/configs/shells/bash/.bashrc ~/.bashrc +ln -sf $EWCONFIG_ROOT/configs/windows-terminal/settings.json $LOCALAPPDATA/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/settings.json # Configure Git ln -sf $EWCONFIG_ROOT/configs/git/.gitconfig ~/.gitconfig