Skip to content

Instantly share code, notes, and snippets.

View vitormateusalmeida's full-sized avatar
👨‍💻
...

Vitor Almeida vitormateusalmeida

👨‍💻
...
View GitHub Profile
@vitormateusalmeida
vitormateusalmeida / powershell_profile.ps1
Last active September 2, 2025 20:54
Powershell profile with custom functions
# Import the Chocolatey Profile that contains the necessary code to enable
# tab-completions to function for `choco`.
# Be aware that if you are missing these lines from your profile, tab completion
# for `choco` will not function.
# See https://ch0.co/tab-completion for details.
$ChocolateyProfile = "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
if (Test-Path($ChocolateyProfile)) {
Import-Module "$ChocolateyProfile"
}
{
"emmet.syntaxProfiles" : {
"javascript" : "jsx"
},
"workbench.startupEditor" : "newUntitledFile",
"editor.fontSize" : 16,
"javascript.suggest.autoImports" : true,
"javascript.updateImportsOnFileMove.enabled" : "always",
"editor.rulers" : [
80,