Skip to content

Commit f9a5513

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 2a4b31b + 8bc7127 commit f9a5513

3 files changed

Lines changed: 21 additions & 1 deletion

File tree

.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
```

profile.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ Set-Alias -Name g -Value git -Force
3838
# It finds all aliases and registers the proxy completer.
3939
Import-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

0 commit comments

Comments
 (0)