This file contains 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
# Git | |
# Install-Module -Name Posh-Git -Scope CurrentUser -Force | |
# Install-Module -Name PSScriptAnalyzer -Scope CurrentUser -Force | |
Import-Module Posh-Git | |
function Edit-Profile { code $PROFILE.CurrentUserAllHosts } | |
function Get-CmdletAlias ($cmdletname) { | |
Get-Alias | | |
Where-Object -FilterScript { $_.Definition -like "$cmdletname" } | |
This file contains 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
{ | |
"diffEditor.ignoreTrimWhitespace": false, | |
"docker.showStartPage": false, | |
"editor.accessibilitySupport": "off", | |
"editor.cursorStyle": "block", | |
"editor.dragAndDrop": false, | |
"editor.fontFamily": "'Fira Code', Iosevka, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13, | |
"editor.inlineSuggest.enabled": true, |