aboutsummaryrefslogtreecommitdiff
path: root/windows/Documents/PowerShell/Microsoft.PowerShell_profile.ps1
blob: 349f7ab06f0bc94024df8feee523415169adea9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Dotfiles special git command
function global:config {
    git --git-dir="$env:USERPROFILE\.cfg" --work-tree="$env:USERPROFILE" $args
}

# Shows navigable menu of all options when hitting Tab
Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete

# Autocompletion for arrow keys
Set-PSReadlineKeyHandler -Key UpArrow -Function HistorySearchBackward
Set-PSReadlineKeyHandler -Key DownArrow -Function HistorySearchForward

New-Alias vi nvim.exe