Skip to content

Latest commit

 

History

History
48 lines (40 loc) · 1.8 KB

README.md

File metadata and controls

48 lines (40 loc) · 1.8 KB

skm-terminal

Instalação

Modificar as politicas do powershell para executar scripts

Set-ExecutionPolicy RemoteSigned

Instalar os modulos posh-git e oh-my-posh

Install-Module posh-git -Scope CurrentUser
Install-Module oh-my-posh -Scope CurrentUser

Verifique se existe o arquivo $PROFILE, se não existir será criado

if (!(Test-Path -Path $PROFILE )) { New-Item -Type File -Path $PROFILE -Force }
notepad $PROFILE

Importar os módulos e escolher o tema (os mesmos podem ser encontrados em C:\Users\[nome usuário]\Documents\WindowsPowerShell\Modules\oh-my-posh\[versão]\themes)

Import-Module posh-git
Import-Module oh-my-posh
Set-PoshPrompt -Theme Paradox

OBS: Caso a última linha apresente erros depois, pode trocar por:

Set-Theme Paradox

(opcional) Instalar o chocolatey

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

(opcional) Instalar a fonte Fira Code com o chocolatey (OBS: A Fira Code precisa ser instalada, opcional é so a forma de fazer isso)

choco install firacode-ttf

Referências