File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ root = true
2+
3+ [* ]
4+ charset = utf-8
5+ end_of_line = lf
6+ insert_final_newline = true
7+
8+ [* .{ps1,psm1,psd1} ]
9+ end_of_line = crlf
10+ indent_style = space
11+ indent_size = 2
Original file line number Diff line number Diff line change 1+ # dotfiles
2+
3+ To install put following content in $PROFILE.CurrentUserAllHosts:
4+
5+ ``` powershell
6+ # Microsoft.PowerShell_profile.ps1 (CurrentUserAllHosts)
7+ $dot = Join-Path $HOME 'dotfiles\profile.ps1'
8+ if (Test-Path $dot) { . $dot }
9+ ```
Original file line number Diff line number Diff line change @@ -38,4 +38,4 @@ Set-Alias -Name g -Value git -Force
3838# It finds all aliases and registers the proxy completer.
3939Import-Module GitAliases.Extras - Force - ErrorAction Stop
4040
41- Write-Host " PowerShell profile loaded. Posh-git and custom alias completion are active." - ForegroundColor Green
41+ # Write-Host "PowerShell profile loaded. Posh-git and custom alias completion are active." -ForegroundColor Green
You can’t perform that action at this time.
0 commit comments