Skip to content

Instantly share code, notes, and snippets.

View henriqwe's full-sized avatar

Claudio Henrique henriqwe

  • Maceió-AL ✈️
  • 18:49 (UTC -03:00)
View GitHub Profile
@henriqwe
henriqwe / starship.toml
Last active March 11, 2024 16:42
starship.toml
# ~/.config/starship.toml
[battery]
full_symbol = "🔋"
charging_symbol = "🔌"
discharging_symbol = "⚡"
[[battery.display]]
threshold = 30
style = "bold red"
@henriqwe
henriqwe / pecege.code-snippets
Last active May 3, 2024 12:54
vscode snippets PECEGE
{
"Console log": {
"scope": "javascript,typescript,typescriptreact",
"prefix": "log",
"body": [
"console.log({$1})"
],
"description": "Log output to console"
},
"React compenent": {
@henriqwe
henriqwe / config_base_manjaro_pecege.md
Last active December 12, 2023 19:17
Configuracao base do manjaro (PECEGE)

Habilitar varios downloads em paralelo

sudo nano /etc/pacman.conf
  • Procurar, descomentar a linha e por o valor a baixo

    ParallelDownload = 100
@henriqwe
henriqwe / .prettierrc
Created September 26, 2023 19:37
my .prettierrc
{
"singleQuote": true,
"trailingComma": "none",
"semi": false
}

Variaveis de ambiente fish

set -Ux ANDROID_HOME $HOME/Android/Sdk
set -U fish_user_paths $ANDROID_HOME/emulator $fish_user_paths
set -U fish_user_paths $ANDROID_HOME/tools $fish_user_paths
set -U fish_user_paths $ANDROID_HOME/tools-bin $fish_user_paths
set -U fish_user_paths $ANDROID_HOME/platform-tools $fish_user_paths
@henriqwe
henriqwe / config_base_manjaro_comigo.md
Last active October 5, 2023 10:45
Configuracao base do manjaro (COMIGO)

Habilitar varios downloads em paralelo

sudo nano /etc/pacman.conf
  • Procurar, descomentar a linha e por o valor a baixo

    ParallelDownload = 50
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible).
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export.
var FORMAT_ONELINE = 'One-line';
var FORMAT_MULTILINE = 'Multi-line';
var FORMAT_PRETTY = 'Pretty';
var LANGUAGE_JS = 'JavaScript';
var LANGUAGE_PYTHON = 'Python';