Skip to content

Instantly share code, notes, and snippets.

View pauloreis7's full-sized avatar
🏆
JS/TS | C#/.NET

Paulo Silva dos Reis pauloreis7

🏆
JS/TS | C#/.NET
View GitHub Profile
@pauloreis7
pauloreis7 / unix-dev-setup.md
Created May 30, 2026 22:41
Setup for unix dev env (macos and linux)
@pauloreis7
pauloreis7 / fish-config.md
Last active May 30, 2026 22:38
Fish config

General must have

if status is-interactive
    # Commands to run in interactive sessions can go here
end

starship init fish | source
set fish_greeting
@pauloreis7
pauloreis7 / iterm2.plist
Created May 30, 2026 21:36
iTerm2 default settings
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AIFeatureFunctionCalling</key>
<true/>
<key>AIFeatureHostedCodeInterpeter</key>
<true/>
<key>AIFeatureHostedFileSearch</key>
<true/>
@pauloreis7
pauloreis7 / vscode-settings.json
Last active May 30, 2026 23:54
VSCode settings json
{
"editor.fontFamily": "JetBrains Mono",
"editor.fontLigatures": true,
"workbench.colorTheme": "Dracula Theme",
"workbench.iconTheme": "symbols",
"terminal.integrated.defaultProfile.osx": "fish",
"editor.wordWrap": "on",
"editor.semanticHighlighting.enabled": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
@pauloreis7
pauloreis7 / windows-terminal-settings.json
Last active May 30, 2026 20:42
Settings json for windows terminal
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command": "paste",
"id": "User.paste"
},
{
@pauloreis7
pauloreis7 / windows-dev-setup.md
Last active May 30, 2026 20:48
Setup for windows dev env
@pauloreis7
pauloreis7 / starship.toml
Created April 1, 2026 17:39
Starship personal shell config
add_newline = false
[line_break]
disabled = false
[username]
style_user = "green bold"
style_root = "red bold"
format = "[$user]($style) "
disabled = false