feat(wezterm): add wezterm config

This commit is contained in:
js0ny 2024-12-22 09:24:18 +00:00
parent 8bb2d9fbe8
commit baf0ee5255
7 changed files with 142 additions and 8 deletions

View file

@ -0,0 +1,10 @@
function Invoke-Completion {
param ([string]$command)
switch ($command) {
'docker' { docker completion powershell | Out-String | Invoke-Expression }
'git' { Import-Module Posh-Git }
'hugo' { hugo completion powershell | Out-String | Invoke-Expression }
'pip' { pip completion --powershell | Out-String | Invoke-Expression }
'wezterm' { wezterm shell-completion --shell power-shell | Out-String | Invoke-Expression }
}
}