commit 18b017395427f6e9f838613f40194c78413b4da7 Author: wangbudui Date: Sat Dec 21 09:37:51 2019 +0800 init: add vscode&MT settings diff --git a/AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/profiles.json b/AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/profiles.json new file mode 100644 index 0000000..68a7a4d --- /dev/null +++ b/AppData/Local/Packages/Microsoft.WindowsTerminal_8wekyb3d8bbwe/LocalState/profiles.json @@ -0,0 +1,105 @@ +// To view the default settings, hold "alt" while clicking on the "Settings" button. +// For documentation on these settings, see: https://aka.ms/terminal-documentation +{ + "$schema": "https://aka.ms/terminal-profiles-schema", + "defaultProfile": "{a5a97cb8-8961-5535-816d-772efe0c6a3f}", + "requestedTheme": "system", + "disabledProfileSources": [ + "Windows.Terminal.Azure" + ], + "profiles": [ + { + "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", + "name": "Windows PowerShell", + "commandline": "powershell.exe", + "hidden": false + }, + { + "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", + "name": "cmd", + "commandline": "cmd.exe", + "hidden": false + }, + { + "guid": "{a5a97cb8-8961-5535-816d-772efe0c6a3f}", + "hidden": false, + "name": "Arch", + "source": "Windows.Terminal.Wsl", + "startingDirectory": "//wsl$/Arch/home/budui", + "useAcrylic": true, + "acrylicOpacity": 0.7, + "fontFace": "Fira Code" + }, + { + "guid": "{c6eaf9f4-32a7-5fdc-b5cf-066e8a4b1e40}", + "hidden": false, + "name": "Ubuntu-18.04", + "source": "Windows.Terminal.Wsl" + } + ], + + "schemes": [], + + "keybindings": [ + { + "command": "closePane", + "keys": [ + "ctrl+w" + ] + }, + { + "command": "copy", + "keys": [ + "ctrl+c" + ] + }, + { + "command": "paste", + "keys": [ + "ctrl+v" + ] + }, + { + "command": "newTab", + "keys": [ + "ctrl+shift+t" + ] + }, + { + "command": "switchToTab0", + "keys": [ + "ctrl+1" + ] + }, + { + "command": "switchToTab1", + "keys": [ + "ctrl+2" + ] + }, + { + "command": "switchToTab2", + "keys": [ + "ctrl+3" + ] + }, + { + "command": "switchToTab3", + "keys": [ + "ctrl+4" + ] + }, + { + "command": "switchToTab4", + "keys": [ + "ctrl+5" + ] + }, + { + "command": "switchToTab5", + "keys": [ + "ctrl+6" + ] + } + ] +} \ No newline at end of file diff --git a/AppData/Roaming/Code/User/settings.json b/AppData/Roaming/Code/User/settings.json new file mode 100644 index 0000000..f4fb517 --- /dev/null +++ b/AppData/Roaming/Code/User/settings.json @@ -0,0 +1,6 @@ +{ + "workbench.activityBar.visible": false, + "files.autoSave": "onWindowChange", + "editor.fontFamily": "'Fira Code', '等距更纱黑体 SC', Consolas, 'Courier New', monospace", + "editor.fontLigatures": true +} \ No newline at end of file