Skip to content

Instantly share code, notes, and snippets.

View diegonatalo's full-sized avatar
🚀
Studying

Diego Natalo diegonatalo

🚀
Studying
View GitHub Profile
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions": [
{
"command": "paste",
"keys": "ctrl+v"
},
{
"command": {
if (!(Test-Path -Path $PROFILE)) {
New-Item -ItemType File -Path $PROFILE -Force
}
notepad $PROFILE.CurrentUserCurrentHost
function prompt {
$ESC = [char]27
"$ESC[34m$(Get-Location)$ESC[33m:$ESC[32m~$ESC[31m$ $ESC[97m"
}
{
"Create react component": {
"scope": "javascriptreact,typescriptreact",
"prefix": "rc",
"body": [
"export function $1() {",
" return (",
" $2",
" )",
"}"
@diegonatalo
diegonatalo / settings.json
Last active June 3, 2023 13:48
VSCode Settings
{
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"editor.lineHeight": 26,
"editor.renderLineHighlight": "gutter",
"editor.rulers": [80, 120],
"editor.linkedEditing": true,
"editor.semanticHighlighting.enabled": false,