Last active
December 9, 2021 02:03
-
-
Save abuturabofficial/c865c41b5356b588e9dd8f4890e43c74 to your computer and use it in GitHub Desktop.
Windows GitBAsh
This file contains hidden or 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
| eval "$(oh-my-posh --init --shell bash --config ~/AppData/Local/Programs/oh-my-posh/themes/powerlevel10k_modern.omp.json)" | |
| alias ls='ls --color=auto' |
This file contains hidden or 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
| #Oh-My-Posh module using InstalledModule Command | |
| #Import-Module oh-my-posh | |
| #Set-PoshPrompt -Theme powerlevel10k_modern | |
| oh-my-posh --init --shell pwsh --config ~\AppData\Local\Programs\oh-my-posh\themes\powerlevel10k_modern.omp.json | Invoke-Expression | |
| #Terminal Icons for PowerShell | |
| Import-Module -Name Terminal-Icons | |
| #History, List view, Vim mode for PowerShell | |
| Import-Module PSReadLine | |
| Set-PSReadLineOption -PredictionSource History | |
| Set-PSReadLineOption -PredictionViewStyle ListView | |
| Set-PSReadLineOption -EditMode Windows | |
| Set-PSReadLineOption -EditMode Vi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment