Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elzasimoes/config-windows-terminal
https://github.com/elzasimoes/config-windows-terminal
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/elzasimoes/config-windows-terminal
- Owner: elzasimoes
- Created: 2024-03-03T20:20:46.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-03T20:29:17.000Z (9 months ago)
- Last Synced: 2024-05-28T23:36:18.731Z (6 months ago)
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# config-windows-terminal
## Atualizar o Windows PowerShell
[https://learn.microsoft.com/pt-br/powershell/](https://learn.microsoft.com/pt-br/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.4)https://learn.microsoft.com/pt-br/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.4
````
winget install --id Microsoft.Powershell --source winget
````## Instalar o Oh My Posh
https://ohmyposh.dev/docs/
## Instalar o git posh
https://github.com/dahlbyk/posh-git
## Instalar power type auto complete
https://github.com/AnderssonPeter/PowerType
````
code $PROFILE
````1. Habilitar o PowerType
2. Setar o histórico do auto complete
3. Importar o posh-git
4. Habilitar a PoshTooltips
5. Configurar um tema pro oh-my-posh
````
Enable-PowerType
Set-PSReadLineOption -PredictionSource HistoryAndPlugin -PredictionViewStyle ListView
Import-Module posh-git
Enable-PoshTooltips
oh-my-posh init pwsh --config 'C:\Users\Acer\Posh\amro.omp.json' | Invoke-Expression
````