Skip to content

Instantly share code, notes, and snippets.

@aaronsb
Created June 12, 2020 21:22
Show Gist options
  • Save aaronsb/465d42bc84e3f620e9589e99a4153363 to your computer and use it in GitHub Desktop.
Save aaronsb/465d42bc84e3f620e9589e99a4153363 to your computer and use it in GitHub Desktop.
powershell profile
# 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
Set-PSReadLineOption -HistorySearchCursorMovesToEnd
Import-Module posh-git
Import-Module oh-my-posh
Set-Theme Paradox
import-module /home/aaron/.local/share/powershell/Modules/REC-BMSManager
Import-Module Get-ChildItemColor
New-Alias -Name ls -Value Get-ChildItemColorFormatWide
#neofetch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment