Update dotfiles/.config/powershell/user_profile.ps1

This commit is contained in:
Brian Zalewski 2022-10-25 04:34:56 +00:00
parent d1b68da2b7
commit 494ff3e6a0

View file

@ -1,14 +1,21 @@
# set PowerShell to UTF-8 # set PowerShell to UTF-8
[console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding [console]::InputEncoding = [console]::OutputEncoding = New-Object System.Text.UTF8Encoding
Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser
Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force -SkipPublisherCheck
Set-Prompt
Import-Module posh-git Import-Module posh-git
Import-Module oh-my-posh
$omp_config = Join-Path $PSScriptRoot ".\takuya.omp.json" $omp_config = Join-Path $PSScriptRoot ".\takuya.omp.json"
oh-my-posh --init --shell pwsh --config $omp_config | Invoke-Expression oh-my-posh --init --shell pwsh --config $omp_config | Invoke-Expression
Set-Theme Paradox
Import-Module -Name Terminal-Icons Import-Module -Name Terminal-Icons
# PSReadLine # PSReadLine
Set-PSReadLineOption -EditMode Emacs Set-PSReadLineOption -EditMode Vim
Set-PSReadLineOption -BellStyle None Set-PSReadLineOption -BellStyle None
Set-PSReadLineKeyHandler -Chord 'Ctrl+d' -Function DeleteChar Set-PSReadLineKeyHandler -Chord 'Ctrl+d' -Function DeleteChar
Set-PSReadLineOption -PredictionSource History Set-PSReadLineOption -PredictionSource History
@ -17,18 +24,19 @@ Set-PSReadLineOption -PredictionSource History
Import-Module PSFzf Import-Module PSFzf
Set-PsFzfOption -PSReadlineChordProvider 'Ctrl+f' -PSReadlineChordReverseHistory 'Ctrl+r' Set-PsFzfOption -PSReadlineChordProvider 'Ctrl+f' -PSReadlineChordReverseHistory 'Ctrl+r'
### zoxide
Invoke-Expression (& {
$hook = if ($PSVersionTable.PSVersion.Major -lt 6) { 'prompt' } else { 'pwd' }
(zoxide init --hook $hook powershell | Out-String)
})
# Env # Env
$env:GIT_SSH = "C:\Windows\system32\OpenSSH\ssh.exe" $env:GIT_SSH = "C:\Windows\system32\OpenSSH\ssh.exe"
# Alias ### Aliases
Set-Alias -Name vim -Value nvim
Set-Alias ll ls
Set-Alias g git
Set-Alias grep findstr Set-Alias grep findstr
Set-Alias tig 'C:\Program Files\Git\usr\bin\tig.exe'
Set-Alias less 'C:\Program Files\Git\usr\bin\less.exe'
# Utilities ### Utilities
function which ($command) { function which ($command) {
Get-Command -Name $command -ErrorAction SilentlyContinue | Get-Command -Name $command -ErrorAction SilentlyContinue |
Select-Object -ExpandProperty Path -ErrorAction SilentlyContinue Select-Object -ExpandProperty Path -ErrorAction SilentlyContinue