This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"breadcrumbs.enabled": false, | |
"cSpell.language": "en,pt", | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
"editor.accessibilitySupport": "off", | |
"editor.fontFamily": "JetBrains Mono", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 16, | |
"editor.hideCursorInOverviewRuler": true, | |
"editor.lineHeight": 1.8, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host ghp | |
HostName github.com | |
User git | |
AddKeysToAgent yes | |
IdentityFile ~/.ssh/id_ed25519_personal | |
IdentitiesOnly yes | |
Host ghu | |
HostName github.com | |
User git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Check for user.name | |
USER_NAME=$(git config user.name) | |
if [ -z "$USER_NAME" ]; then | |
echo "Error: Git user.name is not set!" | |
exit 1 | |
fi | |
# Check for user.email |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
palette = "dracula" | |
[aws] | |
symbol = " " | |
[buf] | |
symbol = " " | |
[bun] | |
symbol = " " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local wezterm = require 'wezterm' | |
local config = {} | |
config.color_scheme = "Dracula (Official)" | |
config.font = wezterm.font 'JetBrainsMono Nerd Font' | |
config.font_size = 16.0 | |
config.tab_bar_at_bottom = true | |
config.use_fancy_tab_bar = false | |
config.window_decorations = "RESIZE" | |
return config |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[colors] | |
ansi = [ | |
'#21222c', | |
'#ff5555', | |
'#50fa7b', | |
'#f1fa8c', | |
'#bd93f9', | |
'#ff79c6', | |
'#8be9fd', | |
'#f8f8f2', |