Created
November 26, 2024 07:51
-
-
Save TakashiSasaki/b19bf43057fca8a871e4520852079d49 to your computer and use it in GitHub Desktop.
VSCodeのターミナルに管理者モードを開くメニュー項目を追加
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"security.workspace.trust.untrustedFiles": "open", | |
"git.enableSmartCommit": true, | |
"editor.unicodeHighlight.nonBasicASCII": false, | |
"git.autofetch": true, | |
"[python]": { | |
"editor.formatOnType": true | |
}, | |
"security.allowedUNCHosts": [ | |
"knas.local", | |
"133.71.3.4" | |
], | |
"settingsSync.ignoredExtensions": [ | |
"ms-toolsai.jupyter" | |
], | |
"python.defaultInterpreterPath": "C:\\ProgramData\\anaconda3\\python.exe", | |
"workbench.editorAssociations": { | |
"*.ps1": "default" | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"explorer.confirmDelete": false, | |
"git.confirmSync": false, | |
"powershell.powerShellDefaultVersion": "Windows PowerShell (x86)", | |
"powershell.powerShellAdditionalExePaths": { | |
"PowerShell 7.4.2.0": "C:\\Program Files\\WindowsApps\\Microsoft.PowerShell_7.4.2.0_x64__8wekyb3d8bbwe\\pwsh.exe", | |
"PowerShell 5.1": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" | |
}, | |
"diffEditor.hideUnchangedRegions.enabled": true, | |
"git.openRepositoryInParentFolders": "never", | |
"jupyter.askForKernelRestart": false, | |
"powershell.suppressAdditionalExeNotFoundWarning": true, | |
"files.associations": { | |
"*.ps1": "powershell", | |
"*.md": "markdown" | |
}, | |
"editor.accessibilitySupport": "off", | |
"powershell.promptToUpdatePowerShell": false, | |
"[powershell]": { | |
"debug.saveBeforeStart": "nonUntitledEditorsInActiveGroup", | |
"editor.semanticHighlighting.enabled": false, | |
"editor.wordSeparators": "`~!@#$%^&*()=+[{]}\\|;:'\",.<>/?" | |
}, | |
"redhat.telemetry.enabled": true, | |
"remote.SSH.remotePlatform": { | |
"192.168.15.43": "linux" | |
}, | |
"workbench.settings.applyToAllProfiles": [], | |
"terminal.integrated.profiles.windows": { | |
"PowerShell (Admin)": { | |
"path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"args": [ | |
"-NoExit", | |
"-Command", | |
"Start-Process PowerShell -Verb RunAs" | |
] | |
}, | |
"PowerShell (User)": { | |
"path": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"args": [ | |
"-NoExit" | |
] | |
} | |
}, | |
"terminal.integrated.defaultProfile.windows": "PowerShell (User)" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment