Skip to content

Instantly share code, notes, and snippets.

View GabrielGuedess's full-sized avatar
😎
Updating myself everyday!

Gabriel Guedes ★ GabrielGuedess

😎
Updating myself everyday!
View GitHub Profile
#!/bin/sh
find . -type f -name '*.cs' -exec bash -c '
descr=$(file -b "$0")
if [[ $descr != *UTF-8* ]]; then
iconv -f CP1252 -t UTF-8 "$0" > "$0.$$" && mv "$0.$$" "$0"
elif [[ $descr == *"with BOM"* ]]; then
tail -c +4 "$0" > "$0.$$" && mv "$0.$$" "$0"
fi
' {} \;
export ZSH="$HOME/.oh-my-zsh"
. $HOME/.asdf/asdf.sh
source ~/.zsh/catppuccin_mocha-zsh-syntax-highlighting.zsh
plugins=(
git
asdf
docker
# Obtém os preenchimentos automáticos do editor com base em um esquema de configuração
"$schema" = 'https://starship.rs/config-schema.json'
# Insere uma quebra de linha entre os prompts do shell
add_newline = false
# Substitui o símbolo "❯" no prompt por "➜"
# Sets user-defined palette
palette = "catppuccin_mocha"
@GabrielGuedess
GabrielGuedess / settings.json
Last active July 8, 2022 05:49
VSCode Settings
{
// Theme
"workbench.colorCustomizations": {
"[SynthWave '84]": {
"activityBar.foreground": "#f8f8f2",
"activityBar.background": "#161225",
"sideBar.background": "#171227",
"sideBarSectionHeader.background": "#1b152c"
}
},
{"lastUpload":"2022-03-02T01:12:27.685Z","extensionVersion":"v3.4.3"}